/* Modal styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: var(--card);
    border-radius: 8px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--border);
}

.modal-content h3 {
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--foreground);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 1rem;
    background: var(--background);
    color: var(--foreground);
}

.form-group select option:disabled {
    color: var(--muted-foreground);
    background: var(--muted);
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* KCG COOP logo-inspired colors */
    --primary: hsl(0, 84%, 60%);
    --primary-foreground: hsl(0, 0%, 100%);
    --primary-glow: hsl(25, 95%, 55%);
    
    --secondary: hsl(220, 13%, 96%);
    --secondary-foreground: hsl(220, 9%, 15%);
    
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(220, 13%, 18%);
    
    --muted: hsl(220, 14%, 96%);
    --muted-foreground: hsl(220, 9%, 46%);
    
    --accent: hsl(15, 90%, 65%);
    --accent-foreground: hsl(0, 0%, 100%);
    
    --success: hsl(142, 76%, 36%);
    --success-foreground: hsl(0, 0%, 100%);
    
    --warning: hsl(43, 96%, 56%);
    --warning-foreground: hsl(220, 13%, 18%);
    
    --destructive: hsl(0, 84%, 60%);
    --destructive-foreground: hsl(0, 0%, 100%);
    
    --border: hsl(220, 13%, 91%);
    --input: hsl(220, 13%, 91%);
    --ring: hsl(0, 84%, 60%);
    
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(220, 13%, 18%);
    
    --popover: hsl(0, 0%, 100%);
    --popover-foreground: hsl(220, 13%, 18%);
    
    /* KCG COOP gradients */
    --gradient-primary: linear-gradient(135deg, hsl(0, 84%, 60%), hsl(25, 95%, 55%));
    --gradient-success: linear-gradient(135deg, hsl(142, 76%, 36%), hsl(142, 76%, 56%));
    --gradient-gaming: linear-gradient(135deg, hsl(0, 84%, 60%), hsl(15, 90%, 65%));
    --gradient-hero: linear-gradient(135deg, hsl(0, 84%, 20%) 0%, hsl(0, 84%, 40%) 50%, hsl(25, 95%, 30%) 100%);
    
    /* Enhanced shadows - KCG COOP theme */
    --shadow-glow: 0 0 30px hsl(25, 95%, 55%, 0.4);
    --shadow-card: 0 8px 32px hsl(220, 13%, 18%, 0.1);
    --shadow-lg: 0 20px 25px -5px hsl(0, 0%, 0%, 0.1), 0 10px 10px -5px hsl(0, 0%, 0%, 0.04);
    --shadow-neon: 0 0 20px hsl(0, 84%, 60%, 0.6), 0 0 40px hsl(0, 84%, 60%, 0.4), 0 0 80px hsl(0, 84%, 60%, 0.2);
    
    /* Border radius */
    --radius: 0.75rem;
    --radius-lg: 1rem;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@media (prefers-color-scheme: dark) {
    :root {
        --background: hsl(222.2, 84%, 4.9%);
        --foreground: hsl(210, 40%, 98%);
        
        --card: hsl(222.2, 84%, 4.9%);
        --card-foreground: hsl(210, 40%, 98%);
        
        --popover: hsl(222.2, 84%, 4.9%);
        --popover-foreground: hsl(210, 40%, 98%);
        
        --secondary: hsl(217.2, 32.6%, 17.5%);
        --secondary-foreground: hsl(210, 40%, 98%);
        
        --muted: hsl(217.2, 32.6%, 17.5%);
        --muted-foreground: hsl(215, 20.2%, 65.1%);
        
        --border: hsl(217.2, 32.6%, 17.5%);
        --input: hsl(217.2, 32.6%, 17.5%);
    }
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

/* Utility classes */
.hidden {
    display: none !important;
}

.icon {
    width: 1rem;
    height: 1rem;
    stroke-width: 2;
}

/* Login Styles */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    padding: 1rem;
}

.login-card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    border: 1px solid var(--border);
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-logo {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    object-fit: contain;
}

.login-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.login-subtitle {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.form-input {
    height: 2.5rem;
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--input);
    background-color: var(--background);
    padding: 0 0.75rem;
    font-size: 0.875rem;
    transition: var(--transition);
    color: var(--foreground);
}

.form-input:focus {
    outline: none;
    ring: 2px solid var(--ring);
    border-color: var(--ring);
}

.form-input::placeholder {
    color: var(--muted-foreground);
}

/* Button styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    height: 2.5rem;
    padding: 0 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background-color: var(--muted);
}

.btn-full {
    width: 100%;
}

.error-message {
    background-color: hsl(0, 84%, 97%);
    color: var(--destructive);
    padding: 0.75rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    border: 1px solid hsl(0, 84%, 90%);
}

/* Demo accounts */
.demo-accounts {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.demo-accounts h3 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.demo-account-grid {
    display: grid;
    gap: 0.5rem;
}

.demo-account-btn {
    background: var(--muted);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.75rem;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.75rem;
    color: var(--foreground);
}

.demo-account-btn:hover {
    background-color: var(--accent);
    color: var(--accent-foreground);
}

/* Dashboard Styles */
.dashboard {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.dashboard-header {
    background: var(--card);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
    padding: 0 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-logo {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
}

.header-title h1 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--foreground);
}

.header-title p {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.notification-btn {
    background: none;
    border: none;
    padding: 0.5rem;
    border-radius: var(--radius);
    cursor: pointer;
    color: var(--muted-foreground);
    transition: var(--transition);
}

.notification-btn:hover {
    background-color: var(--muted);
    color: var(--foreground);
}

.user-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    background: var(--muted);
    border-radius: var(--radius);
}

.user-info {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.user-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--foreground);
}

.user-role {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.logout-btn {
    background: var(--destructive);
    color: var(--destructive-foreground);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
}

.logout-btn:hover {
    opacity: 0.9;
}

/* Main dashboard content */
.dashboard-main {
    flex: 1;
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Stats grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.stats-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.stats-card:hover {
    box-shadow: var(--shadow-card);
}

.stats-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-icon.primary {
    background: var(--gradient-primary);
    color: var(--primary-foreground);
}

.stats-icon.success {
    background: var(--gradient-success);
    color: var(--success-foreground);
}

.stats-icon.warning {
    background-color: var(--warning);
    color: var(--warning-foreground);
}

.stats-icon.accent {
    background-color: var(--accent);
    color: var(--accent-foreground);
}

.stats-icon .icon {
    width: 1.5rem;
    height: 1.5rem;
}

.stats-content {
    flex: 1;
}

.stats-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    margin-bottom: 0.25rem;
}

.stats-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.stats-description {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* Dashboard grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 1.5rem;
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.card-header {
    padding: 1.5rem 1.5rem 0;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
}

.card-content {
    padding: 1.5rem;
}

/* Activity list */
.activity-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: var(--radius);
    transition: var(--transition);
}

.activity-item:hover {
    background-color: var(--muted);
}

.activity-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.activity-icon .icon {
    width: 1rem;
    height: 1rem;
}

.activity-details {
    flex: 1;
}

.activity-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.activity-meta {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* Quick actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.75rem;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
    color: var(--foreground);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.action-btn.primary {
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    border-color: var(--primary);
}

.action-btn.secondary {
    background-color: var(--secondary);
    color: var(--secondary-foreground);
}

.action-btn.accent {
    background-color: var(--accent);
    color: var(--accent-foreground);
}

.action-btn .icon {
    width: 1.5rem;
    height: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        padding: 0 1rem;
    }
    
    .dashboard-main {
        padding: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-actions {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .user-info {
        display: none;
    }
}

/* Landing Page Styles */
.landing-container {
    min-height: 100vh;
    background: var(--gradient-hero);
    position: relative;
    overflow-x: hidden;
}

.landing-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 25%, hsl(0, 84%, 60%, 0.1) 50%, transparent 75%);
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { transform: translateX(-50px) translateY(-50px); }
    50% { transform: translateX(50px) translateY(50px); }
}

.hero-section {
    padding: 4rem 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logo-section {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.logo {
    width: 5rem;
    height: 5rem;
    margin-bottom: 1rem;
    border-radius: 50%;
    box-shadow: var(--shadow-neon);
    transition: var(--transition-bounce);
}

.logo:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 40px hsl(0, 84%, 60%, 0.8);
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, hsl(0, 0%, 100%), hsl(25, 95%, 55%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px hsl(0, 84%, 60%, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: hsl(0, 0%, 90%);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-buttons .btn {
    font-size: 1rem;
    padding: 0.75rem 2rem;
    height: auto;
    min-width: 150px;
    position: relative;
    overflow: hidden;
}

.cta-buttons .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, hsl(25, 95%, 55%, 0.3), transparent);
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
}

.cta-buttons .btn:hover::before {
    width: 300%;
    height: 300%;
}

/* Features Section */
.features {
    padding: 5rem 1rem;
    background: hsl(0, 0%, 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, var(--gradient-hero), transparent);
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 3rem;
    position: relative;
}

.features h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Footer */
footer {
    background: var(--foreground);
    color: var(--background);
    padding: 2rem 1rem;
    text-align: center;
}

footer p {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Enhanced Login Styles */
.login-container {
    background: var(--gradient-hero);
    position: relative;
}

.login-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 25%, hsl(0, 84%, 60%, 0.1) 50%, transparent 75%);
    animation: backgroundShift 20s ease-in-out infinite;
}

.login-card {
    background: var(--card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2.5rem;
    width: 100%;
    max-width: 420px;
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    animation: slideInUp 0.6s ease-out;
    position: relative;
    z-index: 1;
}

.login-card .logo-section {
    text-align: center;
    margin-bottom: 2rem;
}

.login-card .logo {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1rem;
    border-radius: 50%;
    box-shadow: var(--shadow-glow);
}

.login-card h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.login-card p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    display: block;
}

.form-group input {
    height: 2.75rem;
    width: 100%;
    border-radius: var(--radius);
    border: 2px solid var(--input);
    background-color: var(--background);
    padding: 0 1rem;
    font-size: 0.875rem;
    transition: var(--transition);
    color: var(--foreground);
}

.form-group input:focus {
    outline: none;
    border-color: var(--ring);
    box-shadow: 0 0 0 3px hsl(0, 84%, 60%, 0.1);
}

.form-footer {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
}

.form-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.form-footer a:hover {
    text-decoration: underline;
}

/* Policy Page */
.policy-container {
    max-width: 800px;
    margin: 2rem auto;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.policy-content {
    text-align: left;
    line-height: 1.6;
}

.policy-content h2 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-content h3 {
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.policy-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-content li {
    margin: 0.5rem 0;
}

/* Cookies Consent Modal */
.cookies-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(4px);
}

.cookies-modal {
    background: white;
    max-width: 500px;
    width: 90%;
    margin: 1rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookies-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.cookies-logo {
    width: 48px;
    height: 48px;
    margin-bottom: 0.5rem;
}

.cookies-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.cookies-content {
    padding: 1.5rem;
    line-height: 1.6;
}

.cookies-content p {
    margin: 0 0 1rem 0;
    color: var(--text-color);
}

.cookies-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.cookies-content li {
    margin: 0.5rem 0;
    color: var(--text-color);
}

.cookies-actions {
    padding: 1rem 1.5rem 1.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.cookies-actions .btn {
    flex: 1;
    min-width: 100px;
}

.cookies-policy-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.875rem;
    text-align: center;
    width: 100%;
    margin-top: 0.5rem;
}

.cookies-policy-link:hover {
    text-decoration: underline;
}

/* Decline Message */
.cookies-decline-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1rem;
    max-width: 300px;
    z-index: 9998;
    box-shadow: var(--shadow);
}

.decline-content {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.decline-content p {
    margin: 0;
    font-size: 0.875rem;
    color: #856404;
    flex: 1;
}

.btn-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: #856404;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.btn-close:hover {
    color: #533f03;
}

@media (max-width: 768px) {
    .cookies-actions {
        flex-direction: column;
    }
    
    .cookies-actions .btn {
        width: 100%;
    }
}

/* Enhanced Button Styles */
.btn {
    position: relative;
    z-index: 1;
    font-weight: 600;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--primary-foreground);
    box-shadow: var(--shadow-glow);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px hsl(0, 84%, 60%, 0.6);
}

.btn-secondary {
    background: hsl(0, 0%, 100%);
    color: var(--foreground);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    background: var(--secondary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .features h2 {
        font-size: 2rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .login-card {
        padding: 2rem;
        margin: 1rem;
    }
}

/* Registration Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-help {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
    display: block;
}

.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: relative;
    height: 1.25rem;
    width: 1.25rem;
    background-color: var(--background);
    border: 2px solid var(--border);
    border-radius: 0.25rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.checkbox-label:hover .checkmark {
    border-color: var(--success);
}

.checkbox-label input[type="checkbox"]:checked ~ .checkmark {
    background-color: var(--success);
    border-color: var(--success);
}

.checkbox-label input[type="checkbox"]:checked ~ .checkmark:after {
    content: "";
    position: absolute;
    display: block;
    left: 0.375rem;
    top: 0.125rem;
    width: 0.375rem;
    height: 0.625rem;
    border: solid var(--success-foreground);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.terms-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.terms-link:hover {
    text-decoration: underline;
}

.login-card {
    max-width: 600px;
    width: 100%;
}

/* Responsive adjustments for registration form */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .login-card {
        margin: 1rem;
        padding: 2rem 1.5rem;
    }
}