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


:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --tech-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gold-gradient: linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
    --green-gradient: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    --dark-bg: #0a0a0f;
    --card-bg: #1a1a2e;
    --accent: #667eea;
}

body {
    background: var(--dark-bg);
    color: #fff;
    overflow-x: hidden;
    font-family: 'Space Grotesk', sans-serif;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(20px);
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(102, 126, 234, 0.3);
    font-family: 'Orbitron', sans-serif;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo::before {
    content: '🦈';
    font-size: 2rem;
    filter: drop-shadow(0 0 10px rgba(102, 126, 234, 0.8));
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    transition: all 0.3s;
    padding: 5px 10px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--accent);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    /* height: 40vh; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
    margin-top: 100px;
}

.hero h1 {
    font-family: 'Audiowide', cursive;
    font-size: 5rem;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.hero h2 {
    font-family: 'Michroma', sans-serif;
    font-size: 2rem;
    color: #aaa;
    margin-bottom: 30px;
}

.hero p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    max-width: 800px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 40px;
}

/* Section Styling */
.section {
    padding: 0 5%;
    margin-top: 20px;
    margin-bottom: 100px;
    position: relative;
}

.section-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    background: var(--tech-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    text-align: center;
    color: #888;
    margin-bottom: 60px;
}

/* Footer */
footer {
    background: var(--card-bg);
    padding: 60px 5%;
    text-align: center;
    border-top: 1px solid rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-family: 'Audiowide', cursive;
    font-size: 2.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.footer-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    color: #888;
    line-height: 1.8;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.social-links a:hover {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .hero h2 { font-size: 1.5rem; }
    .section-title { font-size: 2.5rem; }
    .nav-links { display: none; }
}

/* ...existing code... */

/* Registration Form Styling */
.registration-form {
    max-width: 500px;
    margin: 60px auto 0 auto;
    background: var(--card-bg);
    padding: 40px 35px 35px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.15);
    border: 1px solid rgba(102, 126, 234, 0.2);
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: relative;
    z-index: 1;
}

.registration-form label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 6px;
    margin-top: 8px;
    letter-spacing: 1px;
}

.registration-form input[type="text"],
.registration-form input[type="email"],
.registration-form input[type="tel"] {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1.5px solid rgba(102, 126, 234, 0.25);
    background: rgba(26, 26, 46, 0.7);
    color: #fff;
    outline: none;
    margin-bottom: 8px;
    transition: border 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.05);
}

.registration-form input:focus {
    border: 1.5px solid var(--accent);
    box-shadow: 0 0 12px 0 var(--accent);
    background: rgba(26, 26, 46, 0.95);
}

.registration-form .cta-button {
    margin-top: 18px;
    width: 100%;
    font-size: 1.15rem;
    padding: 16px 0;
    border-radius: 50px;
    font-family: 'Electrolize', sans-serif;
    letter-spacing: 1px;
}

.registration-form .cta-button:hover {
    filter: brightness(1.1);
    box-shadow: 0 0 30px var(--accent);
    transform: scale(1.04);
    cursor: pointer;
}

@media (max-width: 600px) {
    .registration-form {
        padding: 25px 10px 20px 10px;
        max-width: 98vw;
    }
}

/* ...existing code... */

.mySelect {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1.5px solid rgba(102, 126, 234, 0.25);
    background: rgba(26, 26, 46, 0.7);
    color: #fff;
    outline: none;
    margin-bottom: 8px;
    transition: border 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.05);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    /* Optional: add a custom arrow */
    background-image: url("data:image/svg+xml;charset=UTF-8,<svg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M5 8L10 13L15 8' stroke='%23667eea' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 20px 20px;
}

.mySelect:focus {
    border: 1.5px solid var(--accent);
    box-shadow: 0 0 12px 0 var(--accent);
    background: rgba(26, 26, 46, 0.95);
}

/* ...existing code... */

.MyTextarea {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    padding: 14px 18px;
    border-radius: 10px;
    border: 1.5px solid rgba(102, 126, 234, 0.25);
    background: rgba(26, 26, 46, 0.7);
    color: #fff;
    outline: none;
    margin-bottom: 8px;
    transition: border 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.05);
    min-height: 120px;
    resize: vertical;
}

.MyTextarea:focus {
    border: 1.5px solid var(--accent);
    box-shadow: 0 0 12px 0 var(--accent);
    background: rgba(26, 26, 46, 0.95);
}

/* ...existing code... */
.error-message {
    color: #ff5c5c !important;
    background: rgba(255, 92, 92, 0.08);
    border-left: 4px solid #ff5c5c;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: 10px;
    margin-top: -4px;
    animation: shake 0.2s 1;
}

@keyframes shake {
    0% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    50% { transform: translateX(4px); }
    75% { transform: translateX(-2px); }
    100% { transform: translateX(0); }
}