/* Font Face Declarations */
@font-face {
    font-family: 'Inter';
    font-display: swap;
    src: url('../fonts/inter.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
}

@font-face {
    font-family: 'Bebas Neue';
    font-display: swap;
    src: url('../fonts/bebas-neue.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #1B1C1E;
    color: #FFFFFF;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Global heading styles */
h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: #3FD0C9;
    text-transform: uppercase;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
}

h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: #FFD34E;
    text-transform: uppercase;
    margin: 2rem 0 1rem 0;
    line-height: 1.2;
}

h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    color: #3FD0C9;
    font-weight: 600;
    margin: 1.5rem 0 0.8rem 0;
    line-height: 1.3;
}

h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: #FFD34E;
    font-weight: 600;
    margin: 1.2rem 0 0.6rem 0;
    line-height: 1.3;
}

h5 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #E0E0E0;
    font-weight: 500;
    margin: 1rem 0 0.5rem 0;
    line-height: 1.4;
}

h6 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #B0B0B0;
    font-weight: 500;
    margin: 0.8rem 0 0.4rem 0;
    line-height: 1.4;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header */
header {
    padding: 40px 0;
    text-align: center;
    position: relative;
}

/* Legal content styles */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.legal-content h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: #3FD0C9;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.legal-section {
    margin-bottom: 30px;
    background: linear-gradient(145deg, #252629, #1f2022);
    border: 2px solid rgba(63, 208, 201, 0.2);
    border-radius: 12px;
    padding: 25px;
}

.legal-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: #FFD34E;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.legal-section p {
    line-height: 1.6;
    color: #E0E0E0;
    margin-bottom: 10px;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(145deg, #252629, #1f2022);
    border-top: 2px solid #3FD0C9;
    padding: 20px;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 300px;
}

.cookie-banner-text h4 {
    font-family: 'Bebas Neue', sans-serif;
    color: #3FD0C9;
    font-size: 1.2rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.cookie-banner-text p {
    color: #E0E0E0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-banner-text a {
    color: #FFD34E;
    text-decoration: underline;
}

.cookie-banner-text a:hover {
    color: #3FD0C9;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background: linear-gradient(145deg, #3FD0C9, #2fb8b0);
    color: #1B1C1E;
}

.cookie-btn-accept:hover {
    background: linear-gradient(145deg, #2fb8b0, #259a92);
    transform: translateY(-1px);
}

.cookie-btn-settings {
    background: transparent;
    color: #3FD0C9;
    border: 2px solid #3FD0C9;
}

.cookie-btn-settings:hover {
    background: rgba(63, 208, 201, 0.1);
    transform: translateY(-1px);
}

.cookie-btn-decline {
    background: transparent;
    color: #FFD34E;
    border: 2px solid rgba(255, 211, 78, 0.5);
}

.cookie-btn-decline:hover {
    background: rgba(255, 211, 78, 0.1);
    transform: translateY(-1px);
}

/* Cookie Settings Modal */
.cookie-settings-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1002;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.cookie-settings-overlay.show {
    display: flex;
}

.cookie-settings-content {
    background: linear-gradient(145deg, #252629, #1f2022);
    border: 2px solid #3FD0C9;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-settings-header {
    margin-bottom: 20px;
}

.cookie-settings-header h3 {
    font-family: 'Bebas Neue', sans-serif;
    color: #3FD0C9;
    font-size: 2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.cookie-settings-header p {
    color: #E0E0E0;
    line-height: 1.5;
}

.cookie-category {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(63, 208, 201, 0.05);
    border-radius: 8px;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.cookie-category h4 {
    color: #FFD34E;
    font-weight: 600;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #555;
    transition: 0.4s;
    border-radius: 24px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .cookie-slider {
    background-color: #3FD0C9;
}

input:checked + .cookie-slider:before {
    transform: translateX(26px);
}

input:disabled + .cookie-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-category p {
    color: #B0B0B0;
    font-size: 0.85rem;
    line-height: 1.4;
}

.cookie-settings-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.cookie-settings-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #888;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-settings-close:hover {
    color: #3FD0C9;
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-banner-buttons {
        justify-content: center;
    }
    
    .cookie-settings-buttons {
        flex-direction: column;
    }
}

/* Hamburger Menu */
.hamburger-menu {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
}

.hamburger-btn {
    background: linear-gradient(145deg, #252629, #1f2022);
    border: 2px solid rgba(63, 208, 201, 0.3);
    border-radius: 8px;
    width: 48px;
    height: 48px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hamburger-btn:hover {
    border-color: #3FD0C9;
    box-shadow: 0 6px 20px rgba(63, 208, 201, 0.3);
}

.hamburger-btn span {
    width: 24px;
    height: 3px;
    background: #3FD0C9;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    z-index: 999;
}

.menu-overlay.show {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.menu-content {
    background: linear-gradient(145deg, #252629, #1f2022);
    border: 2px solid rgba(63, 208, 201, 0.3);
    border-radius: 12px;
    margin: 20px;
    padding: 50px 30px 30px 30px;
    min-width: 280px;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    animation: slideIn 0.3s ease;
    position: relative;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.menu-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #D0D0D0;
    font-size: 24px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #3FD0C9;
}

.menu-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.menu-item {
    color: #D0D0D0;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.menu-item:hover:not(.disabled) {
    background: rgba(63, 208, 201, 0.1);
    color: #3FD0C9;
    transform: translateX(5px);
}

.menu-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.menu-separator {
    height: 1px;
    background: rgba(63, 208, 201, 0.2);
    margin: 8px 0;
}

.menu-section-title {
    color: #FFD34E;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    margin: 8px 16px 4px 16px;
}

.coming-soon-badge {
    background: rgba(255, 211, 78, 0.2);
    color: #FFD34E;
    font-size: 0.75rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: auto;
}

/* Support Overlay Styles */
.support-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    z-index: 1001;
}

.support-overlay.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-content {
    background: linear-gradient(145deg, #252629, #1f2022);
    border: 2px solid rgba(155, 93, 229, 0.3);
    border-radius: 16px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    animation: supportSlideIn 0.3s ease;
    position: relative;
}

@keyframes supportSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.support-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #D0D0D0;
    font-size: 24px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.support-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #9B5DE5;
}

.support-header {
    text-align: center;
    margin-bottom: 25px;
}

.support-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

.support-header h3 {
    color: #FFD34E;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.support-header p {
    color: #D0D0D0;
    font-size: 0.95rem;
    margin: 0;
}

.support-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.support-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.support-option.kofi {
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.1), rgba(255, 149, 0, 0.05));
    color: #ff9500;
}

.support-option.kofi:hover {
    border-color: #ff9500;
    background: rgba(255, 149, 0, 0.1);
    transform: translateX(5px);
}

.support-option.patreon {
    background: linear-gradient(135deg, rgba(255, 66, 77, 0.1), rgba(255, 66, 77, 0.05));
    color: #ff424d;
}

.support-option.patreon:hover {
    border-color: #ff424d;
    background: rgba(255, 66, 77, 0.1);
    transform: translateX(5px);
}

.support-option.paypal {
    background: linear-gradient(135deg, rgba(0, 112, 240, 0.1), rgba(0, 112, 240, 0.05));
    color: #0070f0;
}

.support-option.paypal:hover {
    border-color: #0070f0;
    background: rgba(0, 112, 240, 0.1);
    transform: translateX(5px);
}

.support-option-icon {
    font-size: 1.5rem;
}

.support-option-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.support-option-text small {
    font-size: 0.85rem;
    opacity: 0.8;
}

.support-separator {
    height: 1px;
    background: rgba(155, 93, 229, 0.2);
    margin: 8px 0;
}

.support-other {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(63, 208, 201, 0.1), rgba(63, 208, 201, 0.05));
    color: #3FD0C9;
}

.logo {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    color: #3FD0C9;
    text-shadow: 0 4px 20px rgba(63, 208, 201, 0.3);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.2rem;
    color: #D0D0D0;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0 60px 0;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 800px;
}

.tool-card {
    background: linear-gradient(145deg, #252629, #1f2022);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(63, 208, 201, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(63, 208, 201, 0.1), transparent);
    transition: left 0.5s;
}

.tool-card:hover {
    transform: translateY(-5px);
    border-color: #3FD0C9;
    box-shadow: 0 12px 40px rgba(63, 208, 201, 0.2);
}

.tool-card:hover::before {
    left: 100%;
}

.tool-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #3FD0C9, #9B5DE5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(63, 208, 201, 0.3);
}

.tool-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: #FFD34E;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.tool-description {
    color: #D0D0D0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.tool-link {
    display: inline-block;
    background: linear-gradient(135deg, #3FD0C9, #9B5DE5);
    color: #FFFFFF;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(63, 208, 201, 0.3);
    position: relative;
    overflow: hidden;
}

.tool-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #9B5DE5, #3FD0C9);
    transition: left 0.3s;
    z-index: -1;
}

.tool-link:hover::before {
    left: 0;
}

.tool-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(155, 93, 229, 0.4);
}

.tool-link.coming-soon {
    background: linear-gradient(135deg, #666, #444);
    cursor: not-allowed;
    opacity: 0.7;
}

.tool-link.coming-soon:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(102, 102, 102, 0.3);
}

.tool-link.coming-soon::before {
    display: none;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(63, 208, 201, 0.2);
    background: rgba(0, 0, 0, 0.2);
}

.footer-text {
    color: #D0D0D0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        font-size: 3rem;
    }

    .tools-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tool-card {
        padding: 30px 20px;
    }

    .container {
        padding: 0 15px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tool-card {
    animation: fadeInUp 0.6s ease forwards;
}

.tool-card:nth-child(2) {
    animation-delay: 0.2s;
}

/* Background Effects */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(63, 208, 201, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(155, 93, 229, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 211, 78, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* ============================== */
/* AUTH MODAL STYLES */
/* ============================== */

/* Menu item static (for logged in user display) */
.menu-item-static {
    color: #D0D0D0;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(63, 208, 201, 0.05);
}

/* Auth Overlay Styles */
.auth-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    z-index: 1002;
    backdrop-filter: blur(10px);
}

.auth-overlay.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-content {
    background: linear-gradient(145deg, #252629, #1f2022);
    border: 2px solid rgba(63, 208, 201, 0.3);
    border-radius: 16px;
    padding: 40px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    animation: authSlideIn 0.3s ease;
    position: relative;
    margin: 20px;
}

@keyframes authSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.auth-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #D0D0D0;
    font-size: 24px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.auth-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #3FD0C9;
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h3 {
    color: #FFD34E;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.8rem;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.auth-header p {
    color: #D0D0D0;
    font-size: 0.95rem;
    margin: 0;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.auth-form input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(63, 208, 201, 0.3);
    background: rgba(63, 208, 201, 0.1);
    color: #D0D0D0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.auth-form input:focus {
    outline: none;
    border-color: #3FD0C9;
    background: rgba(63, 208, 201, 0.15);
    box-shadow: 0 0 0 3px rgba(63, 208, 201, 0.1);
}

.auth-form input::placeholder {
    color: rgba(208, 208, 208, 0.6);
}

.auth-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #3FD0C9, #9B5DE5);
    border: none;
    color: white;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.auth-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #9B5DE5, #3FD0C9);
    transition: left 0.3s;
    z-index: -1;
}

.auth-btn:hover::before {
    left: 0;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(63, 208, 201, 0.4);
}

.auth-btn:active {
    transform: translateY(0);
}

.auth-switch {
    text-align: center;
    color: #D0D0D0;
    font-size: 0.9rem;
    margin-top: 20px;
}

.link-btn {
    background: none;
    border: none;
    color: #3FD0C9;
    cursor: pointer;
    text-decoration: underline;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
}

.link-btn:hover {
    color: #9B5DE5;
}

/* ============================================ */
/* FOOTER STYLES */
/* ============================================ */

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 0 20px;
}

.footer-text {
    color: #D0D0D0;
    margin: 0;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link {
    color: #3FD0C9;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #9B5DE5;
}

.footer-separator {
    color: #666;
    font-size: 0.9rem;
}

.footer-disclaimer {
    color: #999;
    margin: 0;
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Mobile responsiveness for auth modals */
@media (max-width: 480px) {
    .auth-content {
        padding: 30px 20px;
        margin: 10px;
    }
    
    .auth-header h3 {
        font-size: 1.5rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
}
}