/* Spins Bro - Premium Gaming Platform Styles */
/* Theme Colors: Deep Black #111111, Royal Blue #1D4ED8, Golden Yellow #FFD700, Silver Gray #9CA3AF, Ivory White #F3F4F6 */

:root {
    --primary-black: #111111;
    --royal-blue: #1D4ED8;
    --golden-yellow: #FFD700;
    --silver-gray: #9CA3AF;
    --ivory-white: #F3F4F6;
    --white: #ffffff;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--royal-blue) 100%);
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 0.8rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo .logo {
    height: 45px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--golden-yellow);
    background-color: rgba(255, 215, 0, 0.1);
}

.nav-actions {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 0.7rem 1.3rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--golden-yellow) 0%, #ffed4e 100%);
    color: var(--primary-black);
    border-color: var(--golden-yellow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ffed4e 0%, var(--golden-yellow) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--royal-blue);
    border-color: var(--royal-blue);
}

.btn-outline:hover {
    background: var(--royal-blue);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: var(--transition);
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Breadcrumb */
.breadcrumb {
    background-color: var(--ivory-white);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.breadcrumb-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--royal-blue);
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--ivory-white) 0%, var(--white) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 78, 216, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
    z-index: 1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    text-align: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: var(--primary-black);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--golden-yellow) 100%);
    border-radius: 2px;
}

/* Brand Introduction */
.brand-intro {
    padding: 4rem 0;
    background-color: var(--white);
}

.intro-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-text {
    margin-bottom: 2rem;
}

.intro-text p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.intro-image {
    text-align: center;
}

.intro-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

/* Platform Features */
.platform-features {
    padding: 4rem 0;
    background-color: var(--ivory-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* Registration Process */
.registration-process {
    padding: 4rem 0;
    background-color: var(--white);
}

.process-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.process-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--royal-blue);
    margin: 2rem 0 1rem 0;
}

.process-text h3:first-child {
    margin-top: 0;
}

.process-text p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.process-image {
    text-align: center;
}

.process-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

/* Advantages & Security */
.advantages-security {
    padding: 4rem 0;
    background-color: var(--ivory-white);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.advantage-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid var(--royal-blue);
}

.advantage-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.advantage-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.advantage-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background-color: var(--white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-black);
    padding: 1.5rem;
    margin: 0;
    cursor: pointer;
    background-color: var(--ivory-white);
    transition: var(--transition);
    position: relative;
}

.faq-question:hover {
    background-color: var(--silver-gray);
    color: var(--white);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    font-weight: bold;
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Call to Action */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--primary-black) 100%);
    color: var(--white);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: linear-gradient(135deg, var(--golden-yellow) 0%, #ffed4e 100%);
    color: var(--primary-black);
}

.cta-section .btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-section .btn-outline:hover {
    background: var(--white);
    color: var(--primary-black);
}

/* Footer */
.footer {
    background-color: var(--primary-black);
    color: var(--white);
    padding: 3rem 0 1rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--golden-yellow);
    margin-bottom: 1rem;
}

.footer-subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-description {
    color: var(--silver-gray);
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--silver-gray);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--golden-yellow);
}

.footer-contact {
    color: var(--silver-gray);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid var(--silver-gray);
    padding-top: 1rem;
    text-align: center;
    color: var(--silver-gray);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--golden-yellow) 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 1000;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
    display: flex;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--primary-black);
        flex-direction: column;
        padding: 2rem 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: var(--shadow-lg);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .mobile-menu-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: var(--transition);
        color: var(--white);
    }

    .mobile-menu-close:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.1);
    }

    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        padding: 0 1rem;
    }

    .nav-link {
        display: block;
        text-align: center;
        padding: 1rem;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.05);
        margin-bottom: 0.5rem;
    }

    .nav-link.active {
        background: rgba(255, 215, 0, 0.2);
        color: var(--golden-yellow);
    }

    .nav-actions {
        display: none;
    }

    .nav-actions-mobile {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
        margin-top: 1rem;
        padding: 0 1rem;
    }

    .nav-actions-mobile .btn {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }

    .mobile-menu-toggle {
        display: flex !important;
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .intro-content,
    .process-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .features-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
    }

    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .feature-card,
    .advantage-item {
        padding: 1.5rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 1.1rem;
    }

    .faq-item.active .faq-answer {
        padding: 1rem;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
.btn:focus,
.nav-link:focus,
.faq-question:focus {
    outline: 2px solid var(--golden-yellow);
    outline-offset: 2px;
}

/* Page-specific styles */
.page-header {
    background: linear-gradient(135deg, var(--ivory-white) 0%, var(--white) 100%);
    padding: 3rem 0;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.last-updated {
    font-size: 0.9rem;
    color: var(--silver-gray);
    font-style: italic;
}

.policy-content {
    padding: 3rem 0;
    background-color: var(--white);
}

.policy-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.policy-text h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--royal-blue);
    margin: 2.5rem 0 1.5rem 0;
    border-bottom: 2px solid var(--golden-yellow);
    padding-bottom: 0.5rem;
}

.policy-text h2:first-child {
    margin-top: 0;
}

.policy-text h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-black);
    margin: 2rem 0 1rem 0;
}

.policy-text p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.policy-text ul {
    margin: 1rem 0 1.5rem 2rem;
}

.policy-text li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.policy-text a {
    color: var(--royal-blue);
    text-decoration: none;
    transition: var(--transition);
}

.policy-text a:hover {
    color: var(--golden-yellow);
    text-decoration: underline;
}

/* About Us specific styles */
.about-story {
    padding: 4rem 0;
    background-color: var(--white);
}

.story-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.story-text h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--royal-blue);
    margin: 2rem 0 1rem 0;
}

.story-text h2:first-child {
    margin-top: 0;
}

.story-text {
    margin-bottom: 2rem;
}

.story-text p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.story-image {
    text-align: center;
}

.story-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.why-choose-us {
    padding: 4rem 0;
    background-color: var(--ivory-white);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.reason-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--golden-yellow);
}

.reason-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.reason-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.reason-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Support page specific styles */
.support-options {
    padding: 4rem 0;
    background-color: var(--white);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.support-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.support-icon {
    margin-bottom: 1.5rem;
}

.support-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.support-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.support-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.support-faq {
    padding: 4rem 0;
    background-color: var(--ivory-white);
}

.faq-categories {
    display: grid;
    gap: 3rem;
}

.faq-category {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.faq-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--royal-blue);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--golden-yellow);
    padding-bottom: 0.5rem;
}

.contact-info {
    padding: 4rem 0;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    background: var(--ivory-white);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--royal-blue);
}

.contact-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.contact-item p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.support-hours {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--primary-black) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.support-hours::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hours-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hours-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--golden-yellow);
    margin: 2rem 0 1rem 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hours-text h3:first-child {
    margin-top: 0;
}

.hours-text p {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    opacity: 0.9;
}

.hours-text ul {
    margin: 1rem 0 1.5rem 0;
    list-style: none;
    padding: 0;
}

.hours-text li {
    margin-bottom: 0.8rem;
    color: var(--white);
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--golden-yellow);
    backdrop-filter: blur(10px);
}

.hours-image {
    text-align: center;
    margin-top: 2rem;
}

.hours-img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 3px solid var(--golden-yellow);
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
        --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    }
}
