/* Reset ve Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.logo p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Countdown Section */
.countdown-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #2c3e50;
    padding: 4rem 0;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid #e5e7eb;
}

.countdown-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="countdown-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(0,0,0,0.05)"/><circle cx="10" cy="10" r="1" fill="rgba(0,0,0,0.03)"/><circle cx="40" cy="40" r="1" fill="rgba(0,0,0,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23countdown-pattern)"/></svg>');
    opacity: 0.4;
}

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

.countdown-content {
    text-align: left;
}

.countdown-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.countdown-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 1.5rem 1rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 2px solid #e5e7eb;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    min-width: 80px;
    transition: all 0.3s ease;
}

.time-unit:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.25);
    background: #f0fdf4;
    border-color: #10b981;
}

.time-value {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: #2c3e50;
    animation: countdownPulse 2s ease-in-out infinite;
}

.time-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #6b7280;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.time-separator {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    opacity: 0.5;
    animation: blink 1s ease-in-out infinite;
}

.countdown-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: #2c3e50;
    padding: 1rem 1.5rem;
    background: #f3f4f6;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    max-width: fit-content;
}

.countdown-message i {
    font-size: 1.3rem;
    color: #10b981;
    animation: globe 3s ease-in-out infinite;
}

.countdown-animation {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.countdown-image {
    max-width: 100%;
    height: auto;
    max-height: 350px;
    border-radius: 15px;
    transition: all 0.5s ease;
    animation: floatImage 6s ease-in-out infinite;
}

.countdown-image:hover {
    transform: scale(1.05);
}

.countdown-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

/* Animations */
@keyframes countdownPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes blink {
    0%, 50% { opacity: 0.7; }
    51%, 100% { opacity: 0.3; }
}

@keyframes globe {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(-5deg) scale(1.1); }
    50% { transform: rotate(5deg) scale(1); }
    75% { transform: rotate(-5deg) scale(1.1); }
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.6; 
    }
    25% { 
        transform: translateY(-15px) rotate(5deg); 
        opacity: 0.8; 
    }
    50% { 
        transform: translateY(-10px) rotate(-5deg); 
        opacity: 1; 
    }
    75% { 
        transform: translateY(-20px) rotate(3deg); 
        opacity: 0.7; 
    }
}

.countdown-finished {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 2rem;
    font-weight: 700;
    color: #10b981;
    background: rgba(16, 185, 129, 0.2);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #10b981;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    animation: celebration 2s ease-in-out infinite;
}

@keyframes celebration {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Trades Showcase Section - Netflix Style */
.trades-showcase {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.trades-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.trades-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    position: relative;
    z-index: 2;
}

.trades-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.trades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.trade-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    text-decoration: none;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.trade-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.3);
    z-index: 10;
}

.trade-image-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.trade-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.trade-card:hover .trade-image-container img {
    transform: scale(1.1);
}

.trade-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.trade-card:hover .trade-overlay {
    opacity: 1;
}

.trade-icon {
    font-size: 3rem;
    color: #10b981;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.1); }
}

.trade-content {
    padding: 1.5rem;
}

.trade-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
}

.trade-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.trade-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #10b981;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.trade-card:hover .trade-cta {
    gap: 1rem;
}

.trade-cta i {
    transition: transform 0.3s ease;
}

.trade-card:hover .trade-cta i {
    transform: translateX(5px);
}

/* Visual Section */
.visual-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #2c3e50;
    padding: 6rem 0 4rem;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.visual-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(44,62,80,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

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

.visual-content {
    padding-left: 2rem;
}

.visual-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.visual-content p {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.6;
    font-weight: 400;
}

.visual-image {
    position: relative;
    text-align: right;
    padding-right: 2rem;
}

.visual-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.visual-image img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.edit-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.edit-btn:hover {
    background: rgba(255,255,255,0.3);
    opacity: 1;
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.8;
}

/* Manifesto Section - Full Width */
.manifesto {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    position: relative;
    overflow: hidden;
    width: 100%;
}

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

.manifesto-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #fff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    position: relative;
    z-index: 2;
    padding: 0 2rem;
    letter-spacing: -1px;
    line-height: 1.1;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.1);
}

.manifesto-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    position: relative;
    z-index: 2;
}

.manifesto-content p {
    font-family: 'Lora', serif;
    font-size: 1.35rem;
    line-height: 2.2;
    margin-bottom: 2rem;
    opacity: 0.96;
    color: rgba(255,255,255,0.96);
    text-align: justify;
    text-indent: 2rem;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.manifesto-final {
    font-family: 'Lora', serif;
    text-align: center !important;
    font-size: 1.5rem !important;
    margin-top: 3rem !important;
    padding-top: 3rem !important;
    border-top: 2px solid rgba(255,255,255,0.3);
    text-indent: 0 !important;
    letter-spacing: 0.5px;
    line-height: 1.8;
}

.manifesto-final strong {
    color: #10b981;
    font-weight: 700;
}


.manifesto-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 4rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

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

.hero-illustration {
    text-align: center;
    font-size: 8rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.6);
}

.btn-secondary {
    background: white;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

.btn-secondary:hover {
    background: #2c3e50;
    color: white;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
    padding: 1.2rem 2rem;
    margin-top: 1rem;
}

.btn-full i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-full:hover i {
    transform: translateX(5px);
}

/* About Section - White Theme */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #2c3e50;
}

.about h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    color: #555;
    font-weight: 400;
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #e5e7eb;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: #f8f9fa;
    border-color: #10b981;
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #10b981;
}

.feature-icon i {
    display: inline-block;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.feature-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 2px solid #e5e7eb;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #e5e7eb;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.step-card:hover {
    transform: translateY(-5px);
    background: #f8f9fa;
    border-color: #10b981;
    box-shadow: 0 10px 30px rgba(16,185,129,0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(16,185,129,0.3);
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-align: center;
}

.step-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    text-align: center;
}

.step-arrow {
    font-size: 2rem;
    color: #10b981;
    opacity: 0.6;
}

.step-arrow i {
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.6;
    }
    50% {
        transform: translateX(10px);
        opacity: 1;
    }
}

/* Comparison Section - White Theme */
.comparison {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    color: #2c3e50;
}

.comparison h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.comparison-subtitle {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 4rem;
    color: #555;
    font-weight: 400;
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-columns {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: start;
}

.comparison-column {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #e5e7eb;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.comparison-column:hover {
    background: #f8f9fa;
    border-color: #d1d5db;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.left-column {
    border-color: rgba(239,68,68,0.3);
}

.left-column:hover {
    border-color: #ef4444;
    box-shadow: 0 10px 40px rgba(239,68,68,0.2);
}

.right-column {
    border-color: rgba(16,185,129,0.3);
}

.right-column:hover {
    border-color: #10b981;
    box-shadow: 0 10px 40px rgba(16,185,129,0.2);
}

.column-label {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.left-column .column-label {
    color: white;
    background: #ef4444;
}

.right-column .column-label {
    color: white;
    background: #10b981;
}

.column-header {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.left-column .column-header {
    color: #ef4444;
}

.right-column .column-header {
    color: #10b981;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1rem 0;
    font-size: 1.1rem;
    line-height: 1.6;
    border-bottom: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    color: #2c3e50;
}

.comparison-list li:last-child {
    border-bottom: none;
}

.comparison-list li:hover {
    padding-left: 0.5rem;
    background: rgba(16, 185, 129, 0.03);
}

.left-column .comparison-list li i {
    color: #ef4444;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.right-column .comparison-list li i {
    color: #10b981;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.comparison-divider-vertical {
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-divider-vertical i {
    font-size: 3rem;
    color: #f59e0b;
    animation: arrowPulse 2s ease-in-out infinite;
}

/* Benefits Section */
.benefits-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.benefits-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.benefits-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.benefits-subtitle {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: rgba(16, 185, 129, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.3);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-highlight {
    border: 2px solid rgba(16, 185, 129, 0.3);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.benefit-highlight::after {
    content: 'EXCLUSIVE';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5);
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.benefit-description {
    font-family: 'Lora', serif;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.benefit-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-features li {
    display: flex;
    align-items: center;
    padding: 0.6rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.benefit-features li i {
    color: #10b981;
    margin-right: 0.8rem;
    font-size: 1rem;
}

.benefits-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-radius: 20px;
    border: 2px solid rgba(16, 185, 129, 0.2);
    position: relative;
    z-index: 2;
}

.benefits-cta-text {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 500;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

.btn-large i {
    margin-right: 0.8rem;
}

.parental-consent-label {
    background: rgba(255, 152, 0, 0.1);
    border: 2px solid rgba(255, 152, 0, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.parental-consent-label strong {
    color: #ff9800;
    display: block;
    margin-bottom: 0.5rem;
}

/* Register Section - Modern Design */
.register {
    padding: 8rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.register::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
    pointer-events: none;
    animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.register-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.register-header h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.register-header p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.8);
    font-weight: 300;
}

.register-subtitle {
    max-width: 720px;
    margin: 0 auto;
    letter-spacing: 0.3px;
}

.register-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.register-tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.tab-btn {
    background: rgba(255,255,255,0.05);
    border: 2px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    padding: 1.5rem 3rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.tab-btn i {
    font-size: 2rem;
    transition: all 0.4s ease;
}

.tab-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #059669);
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
}

.tab-btn:hover::before {
    width: 400px;
    height: 400px;
}

.tab-btn:hover {
    border-color: #10b981;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.4);
}

.tab-btn:hover i {
    transform: scale(1.2) rotate(10deg);
}

.tab-btn.active {
    background: linear-gradient(135deg, #10b981, #059669);
    border-color: #10b981;
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(16, 185, 129, 0.5);
}

.tab-btn.active::before {
    width: 400px;
    height: 400px;
}

.tab-btn.active i {
    transform: scale(1.2);
}

.tab-btn span {
    position: relative;
    z-index: 1;
}

.register-form {
    display: none;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.form-with-image {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0;
    background: rgba(255,255,255,0.03);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    align-items: stretch;
    transition: all 0.5s ease;
}

.form-with-image:hover {
    box-shadow: 0 25px 80px rgba(0,0,0,0.5);
    transform: translateY(-5px);
}

.form-side {
    padding: 3rem;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
}

.form-intro {
    margin-bottom: 2.5rem;
}

.form-intro h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.form-intro h3 i {
    color: #10b981;
    font-size: 2rem;
}

.form-intro p {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.form-tagline {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.2rem;
    line-height: 1.6;
    font-style: italic;
}

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

.form-highlight {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(255,255,255,0.04);
    padding: 1rem 1.25rem;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.form-highlight i {
    font-size: 1.5rem;
    color: #10b981;
    margin-top: 0.2rem;
}

.form-highlight h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.form-highlight p {
    margin: 0.2rem 0 0;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

.form-highlight:hover {
    transform: translateY(-3px);
    border-color: rgba(16,185,129,0.6);
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    font-style: italic;
}

.image-side {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.register-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.8s ease;
}

.register-image:hover {
    transform: scale(1.08);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(16, 185, 129, 0.95) 0%, transparent 100%);
    padding: 3rem;
    transform: translateY(100%);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.image-wrapper:hover .image-overlay {
    transform: translateY(0);
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.overlay-content h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.overlay-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.register-form.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.5s ease;
}

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

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-header p {
    opacity: 0.9;
    font-size: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

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


.modern-form .form-group input,
.modern-form .form-group select,
.modern-form .form-group textarea {
    width: 100%;
    padding: 1.1rem 1.2rem;
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    color: white;
    font-family: 'Lora', serif;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.modern-form .form-group textarea {
    padding: 1.1rem 1.2rem;
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.modern-form .form-group input:hover,
.modern-form .form-group select:hover,
.modern-form .form-group textarea:hover {
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.12);
    transform: translateY(-1px);
}


.modern-form .form-group input:focus,
.modern-form .form-group select:focus,
.modern-form .form-group textarea:focus {
    outline: none;
    border-color: #10b981;
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.3), 0 8px 20px rgba(16, 185, 129, 0.2);
    transform: translateY(-3px) scale(1.01);
}

/* Placeholder styling */
.modern-form .form-group input::placeholder,
.modern-form .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Lora', serif;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.modern-form .form-group select option[value=""] {
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Lora', serif;
}

.form-group select option {
    background: #333;
    color: white;
}

.checkbox-group {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    line-height: 1.6;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 26px;
    height: 26px;
    border: 3px solid rgba(255,255,255,0.6);
    border-radius: 8px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.15);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    display: inline-block;
    cursor: pointer;
}

.checkbox-label:hover .checkmark {
    border-color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.25);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(135deg, #10b981, #059669);
    border-color: #10b981;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 0px;
    left: 6px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    animation: checkmarkAnimation 0.4s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

@keyframes checkmarkAnimation {
    0% { transform: scale(0) rotate(45deg); opacity: 0; }
    50% { transform: scale(1.2) rotate(45deg); opacity: 1; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.terms-link {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    cursor: pointer;
}

.terms-link:hover {
    color: #93c5fd;
    border-bottom-color: #93c5fd;
    text-shadow: 0 0 8px rgba(147, 197, 253, 0.4);
}

.footer-modal-link {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-modal-link:hover {
    color: #60a5fa;
    text-shadow: 0 0 8px rgba(96, 165, 250, 0.4);
}

/* Footer - Modern Dark Theme */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #e0e0e0;
    padding: 4rem 0 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #60a5fa, transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    grid-column: span 1;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section h3 i {
    color: #10b981;
    animation: pulseGlow 3s ease-in-out infinite;
}

.footer-section h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #10b981, transparent);
}

.footer-section p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-contact {
    margin-top: 1.5rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: rgba(255,255,255,0.8);
}

.footer-contact i {
    color: #10b981;
    width: 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-section ul li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #10b981;
    transition: width 0.3s ease;
}

.footer-section ul li a:hover {
    color: #10b981;
    transform: translateX(5px);
}

.footer-section ul li a:hover::before {
    width: 100%;
}

.footer-social-text {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.6);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: #10b981;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(16, 185, 129, 0.3);
}

.social-link i {
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}
    border: 2px solid #e5e7eb;
}

.social-links a.social-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.social-links a.social-disabled:hover {
    transform: none;
    background: white;
    box-shadow: none;
}

.social-links a:hover {
    background: #10b981;
    color: white;
    border-color: #10b981;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.3);
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    margin: 2rem 0 1.5rem;
}

.footer-bottom {
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255,255,255,0.6);
}

.footer-bottom p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.footer-bottom .fa-heart {
    color: #ef4444;
    animation: heartbeat 1.5s ease-in-out infinite;
}

.footer-tagline {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    font-style: italic;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer {
        padding: 3rem 0 1rem;
    }
}

/* Responsive Design */
/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-content h2 {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 2rem;
    margin: 0;
    border-radius: 15px 15px 0 0;
    font-size: 1.8rem;
}

.modal-body {
    padding: 2rem;
    line-height: 1.6;
}

.modal-body h3 {
    color: #2c3e50;
    margin: 2rem 0 1rem 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.modal-body p {
    margin-bottom: 1rem;
    color: #555;
}

.close {
    position: absolute;
    top: 1rem;
    right: 2rem;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #ffeb3b;
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .manifesto-title {
        font-size: 2.8rem;
        margin-bottom: 2.5rem;
    }
    
    .manifesto-content {
        padding: 0 2rem;
    }
    
    .manifesto-content p {
        font-family: 'Lora', serif;
        font-size: 1.15rem;
        line-height: 2;
        margin-bottom: 2rem;
        text-align: left;
        text-indent: 0;
        font-weight: 400;
        letter-spacing: 0.3px;
    }
    
    .manifesto-final {
        font-family: 'Lora', serif;
        font-size: 1.25rem !important;
        padding-top: 2rem !important;
        margin-top: 2rem !important;
        letter-spacing: 0.4px;
    }
    
    
    .manifesto-buttons {
        margin-top: 3rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .visual-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .visual-content {
        padding-left: 0;
        order: 2;
    }
    
    .visual-content h2 {
        font-size: 2.5rem;
    }
    
    .visual-content p {
        font-size: 1.1rem;
    }
    
    .visual-image {
        text-align: center;
        padding-right: 0;
        order: 1;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .step-card {
        width: 100%;
    }
    
    .comparison-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .comparison-divider-vertical {
        display: none;
    }
    
    .comparison-column {
        padding: 2rem;
    }
    
    .column-label {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .column-header {
        font-size: 1.5rem;
    }
    
    .comparison-list li {
        font-size: 1rem;
    }
    
    .countdown-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .countdown-content {
        text-align: center;
        order: 2;
    }
    
    .countdown-animation {
        order: 1;
    }
    
    .countdown-image {
        max-height: 250px;
    }
    
    .countdown-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .countdown-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .countdown-title {
        font-size: 2rem;
    }
    
    .countdown-timer {
        justify-content: center;
    }
    
    .time-unit {
        min-width: 70px;
        padding: 1rem 0.8rem;
    }
    
    .time-value {
        font-size: 2rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 10% auto;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .register-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .register-header h2 {
        font-size: 2.5rem;
    }
    
    .register-tabs {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .tab-btn {
        width: 100%;
        padding: 1.2rem 2rem;
    }
    
    .form-with-image {
        grid-template-columns: 1fr;
        align-items: stretch;
    }
    
    .form-side {
        padding: 2rem;
        order: 2;
    }
    
    .image-side {
        min-height: 350px;
        max-height: 400px;
        order: 1;
    }
    
    .register-image {
        object-fit: cover;
    }
    
    .form-intro h3 {
        font-size: 1.5rem;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .form-intro h3 i {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .manifesto-title {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .manifesto-content {
        padding: 0 1.5rem;
    }
    
    .manifesto-content p {
        font-family: 'Lora', serif;
        font-size: 1.05rem;
        line-height: 1.9;
        margin-bottom: 1.5rem;
        text-align: left;
        text-indent: 0;
        font-weight: 400;
        letter-spacing: 0.2px;
    }
    
    .manifesto-final {
        font-family: 'Lora', serif;
        font-size: 1.15rem !important;
        padding-top: 1.5rem !important;
        margin-top: 1.5rem !important;
        letter-spacing: 0.3px;
    }
    
    
    .manifesto-buttons {
        margin-top: 2.5rem;
        padding: 0 1rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .about h2,
    .register h2,
    .contact h2,
    .comparison h2 {
        font-size: 2rem;
    }
    
    .section-subtitle,
    .comparison-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .column-label {
        font-size: 0.8rem;
    }
    
    .column-header {
        font-size: 1.3rem;
    }
    
    .comparison-list li {
        font-size: 0.9rem;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .counter-container h2 {
        font-size: 1.8rem;
    }
    
    .register {
        padding: 4rem 0;
    }
    
    .register-header h2 {
        font-size: 2rem;
    }
    
    .register-header p {
        font-size: 1rem;
    }
    
    .register-tabs {
        gap: 0.75rem;
    }
    
    .tab-btn {
        padding: 1rem 1.5rem;
        min-width: 150px;
    }
    
    .tab-btn i {
        font-size: 1.5rem;
    }
    
    .form-with-image {
        border-radius: 20px;
    }
    
    .form-side {
        padding: 1.5rem;
    }
    
    .form-intro h3 {
        font-size: 1.3rem;
    }
    
    .form-intro h3 i {
        font-size: 1.5rem;
    }
    
    .form-intro p {
        font-size: 0.95rem;
    }
    
    .image-side {
        min-height: 300px;
        max-height: 350px;
    }
    
    .register-image {
        object-fit: cover;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}
