/* Custom Fonts */
@font-face {
    font-family: 'Limelight';
    src: url('../img/limelight.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

body {
    font-family: 'Lato', sans-serif;
    overflow-x: hidden;
}

.version-9 {
    background: #0a0a0f;
    position: relative;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
}

.v9-geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.v9-geo-shape {
    position: absolute;
    transition: all 0.3s ease;
}

.v9-geo-1 {
    top: -10%;
    left: -8%;
    width: 45%;
    height: 55%;
    background: #CE1126;
    clip-path: polygon(0 0, 100% 0, 75% 100%, 0 85%);
    opacity: 0.8;
    animation: v9-float-1 8s ease-in-out infinite;
}

@keyframes v9-float-1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.v9-geo-2 {
    bottom: -8%;
    right: -5%;
    width: 50%;
    height: 60%;
    background: #007A3D;
    clip-path: polygon(25% 0, 100% 15%, 100% 100%, 0 100%);
    opacity: 0.7;
    animation: v9-float-2 10s ease-in-out infinite;
}

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

.v9-geo-3 {
    top: 15%;
    right: 8%;
    width: 28%;
    height: 35%;
    background: #FCD116;
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
    opacity: 0.6;
    animation: v9-pulse-1 6s ease-in-out infinite;
}

@keyframes v9-pulse-1 {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.v9-geo-4 {
    bottom: 20%;
    left: 10%;
    width: 30%;
    height: 40%;
    background: #CE1126;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    opacity: 0.5;
    animation: v9-rotate-slow 20s linear infinite;
}

@keyframes v9-rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.v9-geo-5 {
    top: 40%;
    left: 5%;
    width: 22%;
    height: 28%;
    background: #FCD116;
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    opacity: 0.4;
    animation: v9-pulse-2 7s ease-in-out infinite;
}

@keyframes v9-pulse-2 {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.4; }
    50% { transform: scale(1.15) rotate(45deg); opacity: 0.6; }
}

.v9-geo-6 {
    top: 50%;
    right: 15%;
    width: 18%;
    height: 25%;
    background: #007A3D;
    clip-path: polygon(0 0, 100% 0, 70% 100%);
    opacity: 0.5;
    animation: v9-float-3 9s ease-in-out infinite;
}

@keyframes v9-float-3 {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-15px); }
}

.v9-container {
    position: relative;
    z-index: 10;
    max-width: 700px;
    width: 90%;
    text-align: center;
    padding: 60px 20px;
}

.v9-logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.v9-logo-image {
    max-width: 100%;
    width: auto;
    height: auto;
}

.v9-brand {
    font-family: 'Limelight', 'Bebas Neue', 'Oswald', sans-serif;
    font-size: 80px;
    font-weight: normal;
    color: #FFFFFF;
    letter-spacing: 16px;
    margin-bottom: 0;
    text-transform: capitalize;
    text-shadow: 3px 3px 0 rgba(206, 17, 38, 0.5), -2px -2px 0 rgba(0, 122, 61, 0.3);
}

.v9-coming-soon {
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-size: 52px;
    font-weight: bold;
    color: #FCD116;
    letter-spacing: 10px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.v9-accent-line {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #CE1126 0%, #FCD116 50%, #007A3D 100%);
    margin: 0 auto 40px;
}

.v9-tagline {
    font-size: 18px;
    color: #FFFFFF;
    letter-spacing: 3px;
    margin-bottom: 60px;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
}

/* Glass Morphism Form */
.v9-glass-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 50px 45px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    margin: 0 auto 50px;
    max-width: 550px;
    position: relative;
}

/* Fallback for browsers without backdrop-filter support */
@supports not (backdrop-filter: blur(10px)) {
    .v9-glass-form {
        background: rgba(255, 255, 255, 0.25);
    }
}

.v9-glass-form::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(206, 17, 38, 0.3), rgba(252, 209, 22, 0.3), rgba(0, 122, 61, 0.3));
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.v9-glass-form:hover::before {
    opacity: 1;
}

.v9-form-title {
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    font-size: 28px;
    color: #FFFFFF;
    letter-spacing: 4px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.v9-form-subtitle {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
}

.v9-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.v9-input {
    padding: 18px 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: #FFFFFF;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
}

.v9-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.v9-input:focus {
    outline: none;
    border-color: #FCD116;
    background: rgba(252, 209, 22, 0.1);
    box-shadow: 0 0 20px rgba(252, 209, 22, 0.3);
}

.v9-button {
    padding: 18px 40px;
    background: #CE1126;
    color: #FFFFFF;
    border: none;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.v9-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.v9-button:hover::before {
    width: 300px;
    height: 300px;
}

.v9-button:hover {
    background: #007A3D;
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 122, 61, 0.6), 0 8px 20px rgba(0, 0, 0, 0.3);
}

.v9-button span {
    position: relative;
    z-index: 1;
}

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

.v9-social a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 20px;
}

.v9-social a i {
    transition: transform 0.3s ease;
}

.v9-social a:hover {
    background: rgba(252, 209, 22, 0.3);
    border-color: #FCD116;
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(252, 209, 22, 0.5);
}

.v9-social a:hover i {
    transform: scale(1.1);
}

/* Success Message */
.success-message {
    display: none;
    padding: 20px;
    background: rgba(252, 209, 22, 0.2);
    border: 2px solid #FCD116;
    border-radius: 8px;
    color: #FFFFFF;
    text-align: center;
    font-size: 15px;
    line-height: 1.6;
    margin-top: 20px;
}

.success-message.show {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsiveness */
@media (max-width: 768px) {
    .v9-logo-image {
        max-width: 100px;
    }

    .v9-logo-wrapper {
        gap: 10px;
    }

    .v9-brand {
        font-size: 52px;
        letter-spacing: 8px;
    }

    .v9-coming-soon {
        font-size: 36px;
        letter-spacing: 6px;
    }

    .v9-glass-form {
        padding: 40px 30px;
    }

    .v9-container {
        padding: 40px 15px;
    }
}
