/* --- News Banner Styles --- */
.news-banner {
    background: linear-gradient(135deg, #1e3a5f 0%, #2980b9 100%);
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 30px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.4), 0 0 20px rgba(30, 58, 95, 0.3);
    border: 1px solid rgba(100, 181, 246, 0.3);
    animation: slideInGlow 1.2s ease-out;
    transition: all 0.3s ease;
    display: block;
    position: static;
}

.news-banner:hover {
    box-shadow: 0 5px 25px rgba(0,0,0,0.5), 0 0 30px rgba(30, 58, 95, 0.5);
    transform: translateY(-2px);
}

@keyframes slideInGlow {
    0% {
        opacity: 0;
        transform: translateY(-20px);
        box-shadow: 0 0 0 rgba(30, 58, 95, 0);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        box-shadow: 0 3px 15px rgba(0,0,0,0.4), 0 0 20px rgba(30, 58, 95, 0.3);
    }
}

.news-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.news-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1e3a5f;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
    animation: gentle-pulse 3s ease-in-out infinite;
}

@keyframes gentle-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.news-text {
    font-size: 1rem;
    color: #e8f4f8;
}

.news-learn-more {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.news-learn-more:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px) scale(1.05);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
    text-decoration: none;
    color: #ffffff;
}

/* Claude 4.0 Upgrade Section */
.claude-upgrade-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #2980b9 100%);
    color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 1px solid rgba(100, 181, 246, 0.3);
    position: relative;
}

.claude-upgrade-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 10px 10px;
    opacity: 0.7;
    border-radius: 0 12px 0 30px;
}

.claude-section-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.claude-section-header i {
    color: #FFD700;
    font-size: 28px;
    margin-right: 15px;
}

.claude-section-header h2 {
    font-size: 26px;
    margin: 0;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    color: #ffffff;
}

.claude-section-header h2:after {
    display: none; /* Remove the default underline for this special section */
}

.claude-highlight {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #e8f4f8;
    line-height: 1.5;
}

.upgrade-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.benefit-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #FFD700;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
}

.benefit-item i {
    color: #FFD700;
    font-size: 20px;
    margin-right: 12px;
}

.benefit-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
    color: #ffffff;
}

.benefit-description {
    font-size: 14px;
    color: #d1e7f0;
    line-height: 1.5;
}

/* Takeoff Feature Styles - NEW ADDITION ONLY */
.takeoff-feature {
    grid-column: span 2; /* Spans two columns */
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.1));
    border-left: 4px solid #FFA500; /* Orange accent instead of gold */
}

.benefit-description-extended {
    font-size: 14px;
    color: #d1e7f0;
    line-height: 1.5;
}

.benefit-description-extended p {
    margin-bottom: 12px;
}

.takeoff-benefits {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 12px 0;
    font-size: 13px;
}

.takeoff-use-cases {
    margin: 12px 0;
    padding: 8px 12px;
    background: rgba(255, 165, 0, 0.1);
    border-radius: 6px;
    font-size: 13px;
    border-left: 2px solid #FFA500;
}

.takeoff-positioning {
    font-style: italic;
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 0 !important;
}

.upgrade-comparison {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 15px;
}

.comparison-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 15px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.before-label {
    color: #f39c12;
}

.after-label {
    color: #2ecc71;
}

.comparison-text {
    font-size: 14px;
    line-height: 1.4;
    color: #e8f4f8;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    background-color: #0E1117;
    /* Add subtle gradient background */
    background-image: linear-gradient(to bottom right, #0E1117, #1a1f2c);
    color: #FAFAFA;
    padding: 30px;
    overflow-x: hidden;
    position: relative;
}

/* Blueprint grid background overlay */
body:after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(100, 181, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(100, 181, 246, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: -1;
}

/* --- TIERED COMFORT ZONE APPROACH --- */

/* Tier 1: Compact Zone (1200-1599px) - Smaller than baseline */
@media (min-width: 1200px) and (max-width: 1599px) {
    .container {
        max-width: 1300px;
        margin: 0 auto; /* Centered for smaller screens */
        padding-left: 80px;
        padding-right: 30px;
    }
    
    .main-content {
        gap: 35px;
    }
    
    .left-column {
        flex: 2.8;
    }
    
    .column {
        padding: 25px;
    }
}

/* Tier 2: Baseline Zone (1600-1999px) - YOUR 1920x1080 BASELINE - NO CHANGES */
@media (min-width: 1600px) and (max-width: 1999px) {
    .container {
        max-width: 1700px;
        margin: 0 0 0 auto; /* Right-aligned as original */
        padding-left: 150px;
        padding-right: 30px;
    }
    
    .main-content {
        gap: 45px;
    }
    
    .left-column {
        flex: 3;
    }
    
    .middle-column, .right-column {
        flex: 1;
    }
    
    .column {
        padding: 30px;
    }
}

/* Tier 3: Extended Zone (2000-2599px) - Larger than baseline */
@media (min-width: 2000px) and (max-width: 2599px) {
    .container {
        max-width: 1400px;
        margin: 0 auto; /* Centered for better balance */
        padding-left: 80px;
        padding-right: 40px;
    }
    
    .main-content {
        gap: 50px;
    }
    
    .left-column {
        flex: 2.5; /* Slightly reduce dominance */
    }
    
    .middle-column, .right-column {
        flex: 1.1; /* Slightly larger side columns */
    }
    
    .column {
        padding: 35px;
    }
}

/* Tier 4: Professional Zone (2600px+) - Ultra-wide/4K setups */
@media (min-width: 2600px) {
    .container {
        max-width: 1400px; /* Safe container width */
        margin: 0 auto; /* Centered for ultra-wide */
        padding-left: 80px;
        padding-right: 50px;
    }
    
    .main-content {
        gap: 50px;
    }
    
    .left-column {
        flex: 2.5; /* Balanced proportions */
    }
    
    .middle-column, .right-column {
        flex: 1.1; /* Slightly larger side columns */
    }
    
    .column {
        padding: 35px;
    }
    
    /* Enhance visual elements for large screens */
    .big-title {
        font-size: 3.8rem;
    }
    
    h2 {
        font-size: 1.9rem;
    }
}
.container {
    max-width: 1700px;
    margin: 0 0 0 auto;
    position: relative;
    padding-left: 150px;
    padding-right: 30px;
}

/* Add subtle construction element accents to corners */
.container:before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(rgba(100, 181, 246, 0.03) 2px, transparent 2px);
    background-size: 15px 15px;
    border-radius: 50%;
    opacity: 0.7;
    z-index: -1;
}

.container:after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(100, 181, 246, 0.07);
    border-radius: 50%;
    opacity: 0.5;
    z-index: -1;
}

/* --- Absolute Logo --- */
.absolute-logo {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    width: 120px;
}

/* Hide logo on ALL devices except desktop */
@media (max-width: 1199px) {
    .absolute-logo {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
}

.site-logo {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.site-logo:hover {
    transform: scale(1.05);
}

/* --- Header --- */
.site-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

/* Enhanced header with blueprint elements and animated line */
.site-header:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(100, 181, 246, 0.2), 
        rgba(100, 181, 246, 0.5), 
        rgba(100, 181, 246, 0.2), 
        transparent);
    z-index: 1;
    animation: lightMovement 8s linear infinite;
    background-size: 200% 100%;
}

/* Animation for the moving light effect */
@keyframes lightMovement {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* --- Typography --- */
.big-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(100, 181, 246, 0.3);
    position: relative;
}

.subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: #A3A8B8;
    letter-spacing: 1px;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

h2:after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, rgba(100, 181, 246, 0.7), rgba(100, 181, 246, 0));
    margin-top: 5px;
}

h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #FFFFFF;
    letter-spacing: 0.3px;
}

p {
    margin-bottom: 1.2rem;
    color: #A3A8B8;
    line-height: 1.7;
}

a {
    color: #64B5F6; /* Blue accent */
    text-decoration: none;
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

a:hover {
    color: #90CAF9;
    text-decoration: underline;
}

/* --- Icons --- */
.icon-header {
    margin-right: 10px;
    color: #64B5F6; /* Blue accent */
}

.icon-feature {
    margin-right: 8px;
    color: #FFD700; /* Gold accent */
}

.feature-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #4A5568, transparent);
    margin: 10px 0 15px;
}

/* --- Layout --- */
.main-content {
    display: flex;
    flex-wrap: wrap;
    gap: 45px;
    margin-bottom: 3rem;
    justify-content: space-between;
    position: relative;
}

/* Background visual element */
.main-content:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(100, 181, 246, 0), rgba(100, 181, 246, 0.2), rgba(100, 181, 246, 0));
    z-index: -1;
}

/* Add subtle construction measurement lines */
.main-content:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 10%;
    width: 80%;
    height: 30px;
    background-image: 
        linear-gradient(90deg, rgba(100, 181, 246, 0.2), transparent 70%),
        linear-gradient(90deg, rgba(100, 181, 246, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(100, 181, 246, 0.02) 1px, transparent 1px);
    background-size: 100% 1px, 50px 10px, 10px 10px;
    background-position: 0 0, 0 15px, 0 15px;
    background-repeat: no-repeat, repeat-x, repeat-x;
    opacity: 0.4;
    z-index: -1;
}

.column {
    background-color: rgba(30, 30, 30, 0.7);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    /* Add subtle glass morphism effect */
    backdrop-filter: blur(5px);
}

/* Default column flex values (for baseline and below 1200px) */
.left-column {
    flex: 3;
    min-width: 300px;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8), rgba(20, 30, 45, 0.8));
}

.middle-column, .right-column {
    flex: 1;
    min-width: 300px;
}

.middle-column {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8), rgba(25, 40, 50, 0.8));
}

.right-column {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8), rgba(30, 35, 55, 0.8));
}

.column:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Enhanced blueprint corner accent */
.column:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background-image: 
        linear-gradient(rgba(100, 181, 246, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(100, 181, 246, 0.07) 1px, transparent 1px);
    background-size: 10px 10px;
    opacity: 0.7;
    border-radius: 0 12px 0 30px;
}

/* --- Video Section --- */
.video-container {
    margin-bottom: 2.5rem;
}

/* YouTube Link Styling - Changed to yellow/gold */
.youtube-link {
    display: block;
    text-align: center;
    margin: 10px auto 25px;
    padding: 8px;
    background: rgba(255, 215, 0, 0.15); /* Changed from red to gold/yellow */
    border-radius: 6px;
    color: #FAFAFA;
    transition: all 0.3s ease;
}

.youtube-link:hover {
    background: rgba(255, 215, 0, 0.25); /* Slightly brighter on hover */
    color: #FFFFFF;
    text-decoration: none;
}

.youtube-link i {
    color: #FFD700; /* Changed from red to gold */
    margin-right: 8px;
}

.placeholder-video {
    background-color: #2D3748;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.placeholder-video:hover {
    transform: scale(1.02);
}

.play-button {
    width: 60px;
    height: 60px;
    background-color: rgba(100, 181, 246, 0.8); /* Blue accent */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 3;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.placeholder-video:hover .play-button {
    background-color: rgba(144, 202, 249, 0.9);
    transform: scale(1.1);
}

.play-button i {
    color: white;
    font-size: 24px;
    margin-left: 4px; /* Optical centering */
}

.placeholder-video p {
    margin-top: 80px;
    font-weight: 500;
    color: #FAFAFA;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
}

/* Blueprint overlay for videos */
.blueprint-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(#64B5F6 1px, transparent 1px), 
                      linear-gradient(90deg, #64B5F6 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.05;
    z-index: 1;
}

/* --- Feature Cards --- */
.feature-card {
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.7), rgba(35, 45, 62, 0.7));
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 1.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    /* Add subtle construction elements */
    background-image: 
        linear-gradient(135deg, rgba(45, 55, 72, 0.7), rgba(35, 45, 62, 0.7)),
        linear-gradient(rgba(100, 181, 246, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(100, 181, 246, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 20px 20px, 20px 20px;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* --- Testimonials --- */
.testimonials {
    margin-top: 2.5rem;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.7), rgba(35, 45, 62, 0.7));
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 1.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    /* Add subtle construction elements */
    background-image: 
        linear-gradient(135deg, rgba(45, 55, 72, 0.7), rgba(35, 45, 62, 0.7)),
        linear-gradient(rgba(100, 181, 246, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(100, 181, 246, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 20px 20px, 20px 20px;
}

.testimonial-card:after {
    content: '"';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 60px;
    color: rgba(255, 255, 255, 0.05);
    font-family: 'Playfair Display', serif;
}

.rating {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    letter-spacing: 3px;
}

.reviewer {
    font-style: italic;
    text-align: right;
    color: #A3A8B8;
    font-weight: 500;
}

/* --- Forms --- */
.login-panel, .dashboard-panel {
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.7), rgba(35, 45, 62, 0.7));
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Add subtle construction elements */
    background-image: 
        linear-gradient(135deg, rgba(45, 55, 72, 0.7), rgba(35, 45, 62, 0.7)),
        linear-gradient(rgba(100, 181, 246, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(100, 181, 246, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 20px 20px, 20px 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: #E2E8F0;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #64B5F6; /* Blue accent */
}

input, textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid #4A5568;
    background-color: rgba(30, 30, 30, 0.7);
    color: #FAFAFA;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #64B5F6; /* Blue accent */
    box-shadow: 0 0 0 2px rgba(100, 181, 246, 0.2);
}

textarea {
    padding: 15px;
    min-height: 120px;
    resize: vertical;
}

.button {
    padding: 12px 20px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    display: inline-block;
    margin-top: 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.primary-button {
    background: linear-gradient(135deg, #64B5F6, #4D99D6); /* Gradient blue */
    color: white;
    width: 100%;
    box-shadow: 0 3px 6px rgba(100, 181, 246, 0.2);
}

.primary-button:hover {
    background: linear-gradient(135deg, #90CAF9, #64B5F6);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(100, 181, 246, 0.3);
}

.secondary-button {
    background-color: transparent;
    color: #E2E8F0;
    border: 1px solid #64B5F6; /* Blue accent */
}

.secondary-button:hover {
    background-color: rgba(100, 181, 246, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(100, 181, 246, 0.2);
}

.text-button {
    background: none;
    color: #A3A8B8;
    text-decoration: underline;
    padding: 8px;
}

.text-button:hover {
    color: #E2E8F0;
}

.create-account {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

/* --- Admin Access --- */
.admin-access {
    text-align: center;
    margin-top: 2.5rem;
    font-size: 0.8rem;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.admin-access:hover {
    opacity: 1;
}

.admin-access a {
    color: #4A5568;
    transition: color 0.3s ease;
}

.admin-access a:hover {
    color: #64B5F6; /* Blue accent */
}

/* --- Test Login Button Styles --- */
.test-login-button {
    background-color: #2c3e50;
    color: white;
    border: 1px dashed #64B5F6;
    border-radius: 6px;
    padding: 12px 20px;
    margin-top: 15px;
    width: 100%;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 6px rgba(44, 62, 80, 0.2);
}

.test-login-button:hover {
    background-color: #34495e;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(44, 62, 80, 0.3);
}

.test-login-button i {
    color: #64B5F6;
    font-size: 1.1rem;
}

/* --- Review Form --- */
.review-form-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Darker overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(5px); /* Blur effect */
}

.review-form {
    background: linear-gradient(135deg, #1E1E1E, #2D3748);
    padding: 35px;
    border-radius: 12px;
    width: 90%;
    max-width: 550px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    /* Add subtle construction elements */
    background-image: 
        linear-gradient(135deg, #1E1E1E, #2D3748),
        linear-gradient(rgba(100, 181, 246, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(100, 181, 246, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 20px 20px, 20px 20px;
}

.review-form:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background-image: linear-gradient(#64B5F6 1px, transparent 1px), 
                      linear-gradient(90deg, #64B5F6 1px, transparent 1px);
    background-size: 10px 10px;
    opacity: 0.05;
    border-radius: 0 12px 0 20px;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    font-size: 1.8em;
    justify-content: space-around;
    padding: 0 0.2em;
    text-align: center;
    width: 5em;
    margin: 0 auto 1.5rem;
}

.star-rating input {
    display: none;
}

.star-rating label {
    color: #444;
    cursor: pointer;
    transition: color 0.3s ease;
}

.star-rating :checked ~ label {
    color: #FFD700;
}

.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #FFD700;
}

.form-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
}

/* Styling for submit button */
.review-form button[type="submit"] {
    background: linear-gradient(135deg, #64B5F6, #4D99D6);
    color: white;
    width: 100%;
    box-shadow: 0 3px 6px rgba(100, 181, 246, 0.2);
}

/* --- Footer --- */
footer {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem 0;
    color: #A3A8B8;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.admin-link a {
    color: #4A5568;
    font-size: 0.85rem;
    opacity: 0.7;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.admin-link a:hover {
    opacity: 1;
    color: #64B5F6; /* Blue accent */
}

/* --- Create Account Page Styles --- */
.center-form {
    display: flex;
    justify-content: center;
    flex-direction: column;
    max-width: 700px;
    margin: 0 auto;
}

.form-panel {
    background: linear-gradient(135deg, rgba(45, 55, 72, 0.7), rgba(35, 45, 62, 0.7));
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Add subtle construction elements */
    background-image: 
        linear-gradient(135deg, rgba(45, 55, 72, 0.7), rgba(35, 45, 62, 0.7)),
        linear-gradient(rgba(100, 181, 246, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(100, 181, 246, 0.02) 1px, transparent 1px);
    background-size: 100% 100%, 20px 20px, 20px 20px;
}

.terms-checkbox {
    margin-top: 25px;
    padding-left: 35px;
    position: relative;
}

.checkbox-container {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 0.95rem;
    user-select: none;
    display: block;
    line-height: 1.4;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: rgba(30, 30, 30, 0.7);
    border: 1px solid #4A5568;
    border-radius: 4px;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: rgba(40, 40, 40, 0.7);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #64B5F6;
    border-color: #64B5F6;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.login-link {
    text-align: center;
    margin-top: 30px;
}

/* --- Responsive Design --- */

/* Tablet: 768px to 1199px */
@media (max-width: 1199px) {
    .main-content {
        gap: 30px;
    }
    
    .column {
        padding: 25px;
    }
    
    .big-title {
        font-size: 3rem;
    }
    
    /* Adjust column proportions for tablets */
    .left-column {
        flex: 2;
    }
    
    .container {
        padding-left: 100px;
    }
    
    .upgrade-benefits {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

/* Mobile: 767px and below */
@media (max-width: 767px) {
    .main-content {
        flex-direction: column;
        gap: 25px;
    }
    
    .column {
        min-width: 100%;
        padding: 20px;
    }
    
    .big-title {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    body {
        padding: 15px;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .review-form {
        max-width: 95%;
        padding: 20px;
    }
    
    .news-banner-content {
        flex-direction: column;
        gap: 10px;
        font-size: 0.9rem;
    }
    
    .news-learn-more {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .upgrade-benefits {
        grid-template-columns: 1fr;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .takeoff-feature {
        grid-column: span 1;
    }
    
    .claude-upgrade-section {
        padding: 20px;
    }
    
    .benefit-item {
        padding: 15px;
    }
}
