:root {
    --primary: #10b981;
    --primary-dark: #059669;
    --text-main: #f8fafc;
    --text-muted: #cbd5e1;
    --glass-bg: rgba(15, 23, 42, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body, html {
    min-height: 100vh;
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: #0f172a;
    overflow-x: hidden;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('assets/field_bg.png') no-repeat center center/cover;
    background-attachment: fixed;
    position: relative;
    padding: 2rem 0;
}

.background-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(5, 46, 22, 0.85) 0%, rgba(5, 46, 22, 0.4) 100%);
    z-index: 1;
}

.glass-container {
    position: relative;
    z-index: 2;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 4rem 5rem;
    max-width: 900px;
    width: 90%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255,255,255,0.05);
    /* Initial state for animation */
    opacity: 0;
    animation: fadeIn 1s forwards ease-out;
}

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

/* Header */
header {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.8s ease-out;
}
.logo {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -1px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}
.ccd-logo {
    height: 48px;
    width: auto;
}
.logo span {
    color: var(--primary);
    font-weight: 300;
}
.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40%;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

/* Main Content */
main {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.badge {
    background: rgba(16, 185, 129, 0.15);
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 99px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
}

h1 span {
    background: linear-gradient(135deg, #34d399, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 650px;
}

.tech-elements {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.1);
}

.tech-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(16, 185, 129, 0.2);
    color: var(--primary);
    font-size: 0.9rem;
}

.tech-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
}

.notify-container {
    margin-top: 1.5rem;
}

.notify-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 1.1rem 2.8rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3), 0 4px 6px -2px rgba(16, 185, 129, 0.2);
    position: relative;
    overflow: hidden;
}

.notify-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 20px -3px rgba(16, 185, 129, 0.4), 0 6px 8px -2px rgba(16, 185, 129, 0.2);
}

.notify-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: transform 0.5s;
}

.notify-btn:active::after {
    transform: translate(-50%, -50%) scale(1);
    transition: 0s;
}

/* Social Section */
.social-section {
    border-top: 1px solid var(--glass-border);
    padding-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.social-section p {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
}

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

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    text-decoration: none;
    font-size: 1.25rem;
    border: 1px solid var(--glass-border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--primary);
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.social-icon i {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
}

.social-icon:hover::before {
    transform: translateY(0);
}

.social-icon:hover i {
    color: #fff;
}

/* Footer */
footer {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

footer p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .glass-container {
        padding: 2.5rem 2rem;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    .social-links {
        flex-wrap: wrap;
    }
}
