/* ==================== RESET & BASE ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --accent-gold: #c9a961;
    --accent-gold-dark: #a88a4d;
    --text-light: #f5f5f5;
    --text-gray: #b0b0b0;
    --border-gold: rgba(201, 169, 97, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', serif;
    background-color: var(--primary-dark);
    color: var(--text-light);
    line-height: 1.8;
    overflow-x: hidden;
}

/* ==================== HEADER & NAVIGATION ==================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-gold);
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--accent-gold);
    letter-spacing: 3px;
    text-transform: none;
    text-shadow: 0 2px 15px rgba(201, 169, 97, 0.4);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: nowrap;
    overflow: hidden;
}

.nav-links a {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Mobile menu toggle button - hidden on desktop */
.mobile-menu-toggle {
    display: none;
}

.mobile-menu-overlay {
    display: none;
}

.login-button {
    font-family: 'Montserrat', sans-serif;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-gold);
    font-size: 12px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
    white-space: nowrap;
    flex-shrink: 0;
}

.login-button:hover {
    background: linear-gradient(135deg, var(--accent-gold-dark), var(--accent-gold));
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.5);
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-attachment: fixed;
    padding: 8rem 5% 4rem;
    transition: background-image 0.5s ease-in-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(10, 10, 10, 0.6) 0%, rgba(10, 10, 10, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 400;
    color: var(--accent-gold);
    letter-spacing: 6px;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 25px rgba(201, 169, 97, 0.6), 0 0 50px rgba(201, 169, 97, 0.4);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-style: normal;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 0.4s both;
    text-shadow: 0 2px 12px rgba(201, 169, 97, 0.4);
    font-weight: 400;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--primary-dark);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: all 0.4s ease;
    border: 2px solid var(--accent-gold);
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.cta-button:hover {
    background: transparent;
    color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.4);
}

/* ==================== SECTIONS ==================== */
section {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    text-align: center;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    letter-spacing: 4px;
    text-transform: none;
    text-shadow: 0 3px 20px rgba(201, 169, 97, 0.5), 0 0 40px rgba(201, 169, 97, 0.3);
}

.section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 4rem;
    font-style: normal;
    opacity: 0.9;
}

/* ==================== HOW IT WORKS ==================== */
.how-it-works {
    background: var(--secondary-dark);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.step {
    background: var(--primary-dark);
    padding: 3rem 2rem;
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    text-align: center;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.step.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.step:nth-child(1).animate-in { transition-delay: 0.1s; }
.step:nth-child(2).animate-in { transition-delay: 0.2s; }
.step:nth-child(3).animate-in { transition-delay: 0.3s; }
.step:nth-child(4).animate-in { transition-delay: 0.4s; }

.step:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 40px rgba(201, 169, 97, 0.2);
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    text-shadow: 0 3px 20px rgba(201, 169, 97, 0.5);
}

.step h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.step p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
}

/* ==================== BENEFITS ==================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.benefit-card {
    background: var(--secondary-dark);
    padding: 3rem 2rem;
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    text-align: center;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.benefit-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.benefit-card:nth-child(1).animate-in { transition-delay: 0.1s; }
.benefit-card:nth-child(2).animate-in { transition-delay: 0.2s; }
.benefit-card:nth-child(3).animate-in { transition-delay: 0.3s; }
.benefit-card:nth-child(4).animate-in { transition-delay: 0.4s; }
.benefit-card:nth-child(5).animate-in { transition-delay: 0.5s; }
.benefit-card:nth-child(6).animate-in { transition-delay: 0.6s; }

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 40px rgba(201, 169, 97, 0.2);
}

.benefit-icon {
    font-size: 2rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.benefit-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
}

/* ==================== PRICING ==================== */
.pricing {
    background: var(--secondary-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.pricing-card {
    background: var(--primary-dark);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.pricing-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.pricing-card:nth-child(1).animate-in { transition-delay: 0.1s; }
.pricing-card:nth-child(2).animate-in { transition-delay: 0.2s; }
.pricing-card:nth-child(3).animate-in { transition-delay: 0.3s; }

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 40px rgba(201, 169, 97, 0.2);
}

.pricing-card.featured {
    border: 2px solid var(--accent-gold);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 0.5rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-radius: 20px;
}

.pricing-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.price {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 25px rgba(201, 169, 97, 0.6), 0 0 50px rgba(201, 169, 97, 0.4);
}

.price-description {
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.8rem 0;
    color: var(--text-gray);
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}

.pricing-features li::before {
    content: '• ';
    color: var(--accent-gold);
    margin-right: 0.5rem;
}

.pricing-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--primary-dark);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-gold);
    text-transform: uppercase;
}

.pricing-button:hover {
    background: transparent;
    color: var(--accent-gold);
    transform: translateY(-2px);
}

/* ==================== CONTACT ==================== */
.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 2rem;
    letter-spacing: 2px;
    text-shadow: 0 3px 20px rgba(201, 169, 97, 0.5);
}

.contact-text p {
    font-size: 1.2rem;
    line-height: 2;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.mafia-quote {
    background: var(--secondary-dark);
    border-left: 4px solid var(--accent-gold);
    padding: 2rem;
    margin: 3rem 0;
    font-style: italic;
}

.mafia-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--accent-gold);
    line-height: 1.6;
}

.contact-info {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--secondary-dark);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
}

.contact-info p {
    font-size: 1.1rem;
    margin: 1rem 0;
    color: var(--text-light);
}

.contact-info strong {
    color: var(--accent-gold);
}

/* ==================== FOOTER ==================== */
footer {
    background: var(--secondary-dark);
    border-top: 1px solid var(--border-gold);
    padding: 3rem 5%;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-gray);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

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

.footer-bottom p {
    color: var(--text-gray);
    margin: 0.5rem 0;
}

.footer-quote {
    font-family: 'Cormorant Garamond', serif;
    font-style: normal;
    color: var(--accent-gold);
    font-size: 1.8rem;
    margin-top: 1rem;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    /* Hide nav links and show mobile menu toggle */
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 4rem 2.5rem 3rem;
        transform: translateY(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        border-bottom: 2px solid rgba(201, 169, 97, 0.3);
        overflow-y: auto;
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 1.5rem 1.5rem;
        font-size: 1.4rem;
        border-bottom: 1px solid rgba(201, 169, 97, 0.1);
        text-align: center;
        border: 2px solid rgba(201, 169, 97, 0.2);
        border-radius: 12px;
        margin-bottom: 0.5rem;
    }
    
    .nav-links a:hover {
        background: rgba(201, 169, 97, 0.15);
        color: #c9a961;
        transform: translateX(5px);
    }
    
    .nav-links .login-button {
        padding: 14px 28px;
        font-size: 14px;
        margin-top: 0.8rem;
        margin-bottom: 3rem;
        width: 100%;
        text-align: center;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
    }
    
    .nav-links .login-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(201, 169, 97, 0.5);
    }
    
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(201, 169, 97, 0.2);
        border: 2px solid var(--accent-gold);
        border-radius: 50%;
        width: 45px;
        height: 45px;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 20px;
        color: var(--accent-gold);
    }
    
    .mobile-menu-toggle:hover {
        background: var(--accent-gold);
        color: var(--primary-dark);
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(201, 169, 97, 0.5);
    }
    
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        display: block;
        opacity: 1;
    }
    
    nav {
        padding: 0.8rem 5%;
        min-height: auto;
    }
    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding: 0.8rem 5%;
        min-height: auto;
        position: relative;
    }
    
    .logo {
        font-size: 1.2rem;
        z-index: 1001;
    }
    
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(201, 169, 97, 0.1);
        border: 2px solid #c9a961;
        color: #c9a961;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.6rem 0.8rem;
        z-index: 1001;
        transition: all 0.3s ease;
        border-radius: 8px;
        width: 45px;
        height: 45px;
    }
    
    .mobile-menu-toggle:hover {
        background: rgba(201, 169, 97, 0.2);
        transform: scale(1.05);
    }
    
    .mobile-menu-toggle:active {
        transform: scale(0.95);
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 3.5rem 1.5rem 4rem;
        transform: translateY(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        border-bottom: 2px solid rgba(201, 169, 97, 0.3);
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem 1.2rem;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(201, 169, 97, 0.1);
        text-align: center;
        transition: all 0.3s ease;
        border-radius: 8px;
        margin-bottom: 0.2rem;
    }
    
    .nav-links a:hover {
        background: rgba(201, 169, 97, 0.15);
        color: #c9a961;
        transform: translateX(5px);
    }
    
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.7);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        display: block;
        opacity: 1;
    }
    
    .hero {
        padding: 3rem 5% 2rem;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 3rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .section-subtitle {
        font-size: 1.6rem;
    }
    
    .steps,
    .benefits-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .step h3,
    .benefit-card h3 {
        font-size: 1.6rem;
    }
    
    .step-number {
        font-size: 3rem;
    }
    
    .pricing-header h3 {
        font-size: 1.8rem;
    }
    
    .price {
        font-size: 3.5rem;
    }
    
    .contact-text h3 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    /* Login button for small mobile devices */
    .nav-login .login-button {
        padding: 8px 16px;
        font-size: 12px;
        white-space: nowrap;
    }
    
    /* Adjust logo size */
    .logo {
        font-size: 1rem;
    }
    nav {
        padding: 0.7rem 4%;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    .mobile-menu-toggle {
        width: 42px;
        height: 42px;
        font-size: 1.4rem;
        padding: 0.5rem;
    }
    
    .nav-links {
        padding: 3.5rem 2rem 2.5rem;
    }
    
    .nav-links a {
        padding: 1.3rem 1rem;
        font-size: 1.2rem;
    }
    
    .hero {
        padding: 2rem 4% 1.5rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }
    
    section {
        padding: 3rem 4%;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
    }
    
    .step-number {
        font-size: 2rem;
    }
    
    .price {
        font-size: 3rem;
    }
}

/* Floating Login Button */
.floating-login-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #c9a961 0%, #d4af37 100%);
    color: #0a0a0a;
    padding: 16px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.floating-login-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(201, 169, 97, 0.6);
    background: linear-gradient(135deg, #d4af37 0%, #e5c158 100%);
}

.floating-login-btn svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.floating-login-btn:hover svg {
    transform: translateX(3px);
}

.floating-login-btn span {
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Mobile adjustments for floating button */
@media (max-width: 768px) {
    .floating-login-btn {
        bottom: 20px;
        right: 20px;
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .floating-login-btn svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .floating-login-btn {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .floating-login-btn svg {
        width: 18px;
        height: 18px;
    }
}
</style.css>