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

:root {
    /* Primary Colors - ICP Ladda Theme */
    --primary-blue: #1e40af;
    --primary-blue-light: #3b82f6;
    --primary-gold: #f59e0b;
    --primary-gold-light: #fbbf24;
    --icp-blue: #0f4c75;
    --icp-red: #dc2626;
    --icp-green: #059669;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --gradient-hero: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #f59e0b 100%);
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 4rem 0;
    
    /* Typography */
    --font-family: 'Prompt', sans-serif;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
}

/* Utilities */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.gradient-text {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #ffffff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 800;
}

.section-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family);
    font-size: var(--font-size-base);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: var(--font-size-lg);
}

.btn-disabled {
    background: var(--gray-300);
    color: var(--gray-600);
    cursor: not-allowed;
    opacity: 0.6;
}

.btn-disabled:hover {
    transform: none;
    box-shadow: none;
    background: var(--gray-300);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--gray-200);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-blue);
}

.company-logo {
    background: var(--primary-blue);
    color: var(--white);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: var(--font-size-lg);
    position: relative;
}

.company-logo::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -8px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid var(--primary-blue);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--gray-800);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.company-logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 6px 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(229, 231, 235, 0.5);
    transition: all 0.3s ease;
}

.company-logo-img:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    border-color: rgba(229, 231, 235, 0.8);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--gray-800);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-2xl);
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: var(--font-size-5xl);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    margin-bottom: 2rem;
    opacity: 0.9;
}

.early-bird-rewards {
    display: block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: rgba(245, 158, 11, 0.2);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(245, 158, 11, 0.4);
    font-size: var(--font-size-base);
    backdrop-filter: blur(10px);
}

/* Real-time Clock Styles */
.realtime-clock-container {
    margin: 1.5rem 0;
    text-align: center;
}

.realtime-clock {
    background: rgba(16, 185, 129, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 1rem 2rem;
    border: 2px solid rgba(16, 185, 129, 0.3);
    display: inline-block;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.current-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--white);
}

.current-time i {
    color: #10b981;
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

.time-text {
    font-size: var(--font-size-lg);
    font-weight: 500;
    letter-spacing: 0.5px;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.countdown-container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.countdown-container h3 {
    margin-bottom: 1rem;
    font-size: var(--font-size-xl);
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.countdown-item {
    text-align: center;
}

.countdown-number {
    display: block;
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--primary-gold-light);
}

.countdown-label {
    font-size: var(--font-size-base);
    opacity: 0.8;
}

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

.hero-visual {
    position: relative;
    height: 400px;
}

.floating-element {
    position: absolute;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    animation: float 6s ease-in-out infinite;
}

.ai-brain {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.ai-circuit {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.ai-robot {
    bottom: 20%;
    left: 40%;
    animation-delay: 4s;
}

/* ICP Ladda Branding */
.company-branding {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 3rem;
}

.icp-logo-large {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    margin-bottom: 2rem;
    display: inline-block;
}

.icp-text {
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.icp-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-gold-light);
    margin-top: 0.5rem;
    letter-spacing: 0.2em;
}

.industry-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.industry-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 1rem;
    text-align: center;
    color: var(--white);
    transition: transform 0.3s ease;
}

.industry-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.industry-item i {
    font-size: var(--font-size-2xl);
    margin-bottom: 0.5rem;
    display: block;
    color: var(--primary-gold-light);
}

.industry-item span {
    font-size: 0.875rem;
    font-weight: 500;
}

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

/* Timeline Section */
.timeline-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin: 2rem 0;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
    padding-left: 50%;
    padding-right: 0;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: left;
}

.timeline-icon {
    position: absolute;
    left: 50%;
    top: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
    color: var(--white);
    font-size: var(--font-size-xl);
    z-index: 1;
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    max-width: 300px;
    text-align: right;
}

.timeline-content h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.timeline-status {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-2xl);
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.timeline-status.active {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: var(--white);
    animation: glow-orange 2s infinite alternate;
}

.timeline-status.pending {
    background: var(--gradient-primary);
    color: var(--white);
    animation: pulse-blue 2s infinite;
}

.timeline-status.completed {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--white);
}

.timeline-status.future {
    background: var(--gray-200);
    color: var(--gray-600);
}

@keyframes glow-orange {
    0% { box-shadow: 0 0 5px rgba(249, 115, 22, 0.5); }
    100% { box-shadow: 0 0 20px rgba(249, 115, 22, 0.8); }
}

@keyframes pulse-blue {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Criteria Section */
.criteria-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.criteria-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(147, 51, 234, 0.05) 0%, transparent 50%);
}

.scoring-overview {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.scoring-title {
    text-align: center;
    color: #1e40af;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

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

.scoring-item {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.scoring-item.highlight {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    transform: scale(1.05);
}

.scoring-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.scoring-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.scoring-content h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.scoring-percentage {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.scoring-item.highlight .scoring-percentage {
    color: white;
}



.scoring-matrix {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.matrix-title {
    text-align: center;
    color: #1e40af;
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.criteria-block {
    margin-bottom: 50px;
    border-left: 5px solid #3b82f6;
    padding-left: 20px;
}

.criteria-title {
    font-size: 1.3rem;
    color: #1e40af;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.criteria-icon {
    font-size: 1.5rem;
}

.criteria-levels {
    display: grid;
    gap: 15px;
}

.level-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid;
    transition: all 0.3s ease;
}

.level-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.bronze-level { border-left-color: #cd7f32; }
.silver-level { border-left-color: #c0c0c0; }
.gold-level { border-left-color: #ffd700; }
.diamond-level { border-left-color: #b9f2ff; }

.level-header {
    margin-bottom: 10px;
}

.level-badge {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.level-badge.bronze {
    background: linear-gradient(135deg, #cd7f32, #b8730e);
    color: white;
}

.level-badge.silver {
    background: linear-gradient(135deg, #c0c0c0, #a8a8a8);
    color: white;
}

.level-badge.gold {
    background: linear-gradient(135deg, #ffd700, #e6c200);
    color: #1a1a1a;
}

.level-badge.diamond {
    background: linear-gradient(135deg, #b9f2ff, #87ceeb);
    color: #1a1a1a;
}

.level-item p {
    margin: 0;
    line-height: 1.6;
    color: #374151;
}

/* Scoring Method Section */
.scoring-method-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    position: relative;
    z-index: 1;
    border: 2px solid #3b82f6;
}

.scoring-title {
    text-align: center;
    color: #1e40af;
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: 600;
}

.formula-box {
    background: #ffffff;
    border: 3px solid #3b82f6;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
}

.formula-text {
    font-size: 1.1rem;
    color: #1e40af;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Score Table Section */
.score-table-section {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    position: relative;
    z-index: 1;
    border: 2px solid #f59e0b;
}

.score-table-title {
    text-align: center;
    color: #92400e;
    margin-bottom: 30px;
    font-size: 1.8rem;
    font-weight: 600;
}

.score-table-wrapper {
    overflow-x: auto;
}

.score-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.score-table th {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    padding: 20px 15px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.score-table td {
    padding: 20px 15px;
    text-align: center;
    font-size: 1.1rem;
    border-bottom: 1px solid #e5e7eb;
}

.score-table tbody tr:hover {
    background-color: #f8fafc;
    transform: scale(1.02);
    transition: all 0.3s ease;
}

.score-table .diamond-row {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
}

.score-table .gold-row {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.score-table .silver-row {
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.score-table .bronze-row {
    background: linear-gradient(135deg, #fef7ed 0%, #fed7aa 100%);
}

.score-table td:first-child {
    font-weight: 600;
    color: #374151;
}

.score-table td:nth-child(2) {
    font-weight: 600;
    font-size: 1.2rem;
}

.score-table td:last-child {
    font-weight: 700;
    color: #1e40af;
    font-size: 1.3rem;
}

.use-cases-section {
    background: #f8fafc;
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    position: relative;
    z-index: 1;
}

.use-cases-title {
    text-align: center;
    color: #1e40af;
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.use-case-block {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.use-case-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.use-case-block.bronze { border-top: 4px solid #cd7f32; }
.use-case-block.silver { border-top: 4px solid #c0c0c0; }
.use-case-block.gold { border-top: 4px solid #ffd700; }
.use-case-block.diamond { border-top: 4px solid #b9f2ff; }

.use-case-block h4 {
    margin-bottom: 20px;
    text-align: center;
}

.use-case-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.use-case-block li {
    background: #f8fafc;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.use-case-block li:hover {
    background: #e2e8f0;
    transform: translateX(5px);
}

.bronze li { border-left-color: #cd7f32; }
.silver li { border-left-color: #c0c0c0; }
.gold li { border-left-color: #ffd700; }
.diamond li { border-left-color: #b9f2ff; }

/* Responsive Design for Criteria Section */
@media (max-width: 768px) {
    .criteria-section {
        padding: 60px 0;
    }
    
    .scoring-overview,
    .scoring-matrix,
    .scoring-method-section,
    .score-table-section,
    .use-cases-section {
        padding: 30px 20px;
        margin: 30px 0;
    }
    
    .formula-box {
        padding: 20px 15px;
    }
    
    .formula-text {
        font-size: 1rem;
    }
    
    .scoring-title,
    .score-table-title {
        font-size: 1.5rem;
    }
    
    .score-table th,
    .score-table td {
        padding: 15px 10px;
        font-size: 1rem;
    }
    
    .score-table td:nth-child(2) {
        font-size: 1.1rem;
    }
    
    .score-table td:last-child {
        font-size: 1.2rem;
    }
    
    .scoring-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .scoring-item.highlight {
        transform: none;
    }
    

    
    .criteria-block {
        padding-left: 15px;
        margin-bottom: 35px;
    }
    
    .criteria-title {
        font-size: 1.2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .level-item {
        padding: 15px;
    }
    
    .use-case-block {
        padding: 20px;
    }
}

/* Awards Section */
.awards-section {
    padding: var(--section-padding);
    background: var(--white);
}

.early-rewards-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border-radius: var(--radius-xl);
    border: 3px solid var(--primary-gold-light);
}

.early-reward-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
    border: 3px solid transparent;
}

.early-reward-card:hover {
    transform: translateY(-5px);
}

.early-reward-card.starbucks {
    border-color: #00704a;
}

.early-reward-card.selection {
    border-color: var(--primary-blue);
}

.reward-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.reward-amount {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.main-awards-title {
    text-align: center;
    font-size: var(--font-size-2xl);
    margin-bottom: 2rem;
    color: var(--primary-blue);
    border-top: 2px solid var(--gray-200);
    padding-top: 2rem;
}

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

.award-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
    border: 3px solid transparent;
}

.award-card:hover {
    transform: translateY(-5px);
}

.award-card.diamond {
    background: linear-gradient(135deg, #e0f2fe 0%, #b3e5fc 100%);
    border-color: #01579b;
}

.award-card.gold {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border-color: #e65100;
}

.award-card.silver {
    background: linear-gradient(135deg, #f5f5f5 0%, #eeeeee 100%);
    border-color: #424242;
}

.award-card.bronze {
    background: linear-gradient(135deg, #efebe9 0%, #d7ccc8 100%);
    border-color: #5d4037;
}

.award-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.award-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: 1rem;
}

.award-amount {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.special-awards-title {
    text-align: center;
    font-size: var(--font-size-2xl);
    margin-bottom: 2rem;
    color: var(--primary-blue);
}

.special-awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.special-award {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.special-award i {
    font-size: var(--font-size-3xl);
    margin-bottom: 1rem;
}

.special-award h4 {
    font-size: var(--font-size-lg);
    margin-bottom: 0.5rem;
}

/* Registration Form */
.register-section {
    padding: var(--section-padding);
    background: var(--gray-50);
}

.register-header {
    max-width: 600px;
    margin: 0 auto 3rem;
    text-align: center;
}

.registration-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-xl);
}

.registration-form.registration-disabled {
    background: var(--gray-100);
    opacity: 0.7;
    pointer-events: none;
}

.registration-form.registration-disabled input,
.registration-form.registration-disabled select,
.registration-form.registration-disabled textarea {
    background: var(--gray-200);
    color: var(--gray-600);
    cursor: not-allowed;
}

.registration-closed-notice {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: var(--radius-lg);
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    box-shadow: var(--shadow-md);
}

.registration-closed-notice i {
    font-size: 1.2rem;
}

.form-section {
    margin-bottom: 3rem;
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gray-200);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    font-family: var(--font-family);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.member-group {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    border: 2px solid var(--gray-200);
}

.member-header {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gray-200);
}

.form-note {
    margin-top: 1rem;
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding);
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-blue);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--gray-50);
}

.faq-question h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.footer-section i {
    margin-right: 0.5rem;
}

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

.social-btn {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-family: var(--font-family);
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
}

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

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-xl);
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.modal-content h3 {
    font-size: var(--font-size-2xl);
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }


    .company-logo-img {
        height: 35px;
    }

    .nav-right {
        gap: 0.5rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: var(--font-size-4xl);
    }

    .realtime-clock {
        padding: 0.75rem 1.5rem;
        margin: 0 1rem;
    }

    .time-text {
        font-size: var(--font-size-base);
    }

    .countdown {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .icp-text {
        font-size: 2.5rem;
    }

    .icp-subtitle {
        font-size: 1rem;
    }

    .industry-icons {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .industry-item {
        padding: 0.75rem;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        padding-left: 80px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .timeline-item:nth-child(odd) {
        padding-left: 80px;
        padding-right: 0;
    }

    .timeline-item:nth-child(odd) .timeline-content {
        text-align: left;
    }

    .timeline-icon {
        left: 30px;
    }

    .timeline-content {
        text-align: left;
        max-width: none;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .registration-form {
        padding: 2rem 1rem;
    }

    .awards-grid {
        grid-template-columns: 1fr;
    }

    .special-awards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-title {
        font-size: var(--font-size-3xl);
    }

    .countdown-container {
        padding: 1rem;
    }

    .special-awards-grid {
        grid-template-columns: 1fr;
    }

    .countdown-number {
        font-size: var(--font-size-2xl);
    }
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 1s ease-in-out infinite;
}

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