/* Import premium fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@500;600;700&family=Orbitron:wght@600;700&display=swap');

#static-links {
    visibility: hidden;
}

/* Typography */
body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: radial-gradient(ellipse at top left, #0a0a0a, #000);
    color: #f2f2f2;
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: #00ffe5;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

p, li {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #ccc;
    font-weight: 300;
}

strong {
    font-weight: 600;
    color: #f2f2f2;
    letter-spacing: 0;
}

header strong, 
.cta strong, 
section h2 strong {
    font-weight: 600;
    letter-spacing: 0;
}

header {
    background: linear-gradient(135deg, #00ffe5 0%, #005d53 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: black;
}

header h1 {
    font-size: clamp(1.875rem, 4.5vw, 2.75rem);
    margin-bottom: 1rem;
}

header p {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    max-width: 900px;
    margin: auto;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.85);
    line-height: 1.6;
}

.hero {
    background-image: url("speedsoft.jpg?v1");
    height: 600px;
    background-size: cover;
    background-position: center;
    margin: 0.5rem auto;
    border-radius: 0px 0px 20px 20px;
    box-shadow: 0 10px 60px -10px #00ffe5aa;
}

section {
    padding: 4rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

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

.feature {
    background: #111;
    padding: 2rem;
    border-left: 2px solid #00ffe5;
    border-radius: 12px;
    font-size: 1rem;
    line-height: 1.6;
}

.room-img, .play-img {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    margin: 2rem 0;
}

.play-img {
    background-image: url("laser.jpg?v1");
}

.room-img {
    background-image: url("escape.jpg?v1");
}

.cta {
    background: #00ffe5;
    color: black;
    padding: 8rem 2rem 5rem;
    text-align: center;
    border-top: 10px solid #000;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    top: 0.3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 160px;
    background: url('logo.png?v1') no-repeat center center;
    background-size: contain;
    opacity: 0.2;
    pointer-events: none;
}

.cta h2 {    
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
    color: black;
}

.cta p {
    color: rgba(0, 0, 0, 0.8);
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.6;
}

.cta a {
    display: inline-block;
    margin-top: 1rem;
    padding: 1rem 3rem;
    background: black;
    color: #00ffe5;
    text-decoration: none;
    font-size: 1.0625rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    border-radius: 50px;
    box-shadow: 0 0 20px #000;
    transition: transform 0.2s ease;
}

.cta a:hover {
    transform: translateY(-2px);
}

footer {
    background: #000;
    color: #f2f2f2;
    text-align: center;
    padding: 2rem;
    font-size: 0.875rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-link {
    color: #777777;
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #00e6d0;
}

footer p {
    margin-top: 1rem;
    color: #555;
    font-size: 0.875rem;
    font-weight: 300;
}

.footer-section {
    margin-bottom: 1.5rem;
    text-align: center;
}

.footer-section h3 {
    color: #f2f2f2;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.footer-section p {
    color: #777777;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

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

.footer-section ul li a {
    color: #777777;
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #00e6d0;
}

@media (min-width: 768px) {
    .footer-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        text-align: left;
    }
    
    .footer-section {
        width: 45%;
        text-align: left;
    }
    
    .footer-links {
        width: 100%;
        margin-top: 1rem;
    }
    
    .footer-section ul {
        justify-content: flex-start;
    }
}

.footer-content > p {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
    color: #555;
    clear: both;
}

nav {
    background: #000;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(0, 255, 229, 0.1);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #00ffe5;
    text-decoration: none;
    letter-spacing: 0.05em;
}

.nav-links a {
    margin-left: 2rem;
    color: #ccc;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a:not(.cta-nav)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #00ffe5;
    transition: width 0.3s ease-in-out;
    box-shadow: 0 0 8px #00ffe5;
}

.nav-links a:not(.cta-nav):hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #00ffe5;
}

.cta-nav {
    padding: 0.625rem 1.5rem;
    background: #00ffe5;
    color: black !important;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 0 10px #00ffe5aa;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.cta-nav:hover {
    transform: translateY(-1px);
}

@media (max-width: 700px) {
    h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    header p {
        font-size: 1.125rem;
    }
    
    .cta h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .case-study-text h2 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    nav {
        position: relative;
    }
    
    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-links {
        margin-top: 1rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-links a {
        margin-left: 0;
    }
}

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

.plan {
    background: #111;
    padding: 2rem;
    border-left: 2px solid #00ffe5;
    border-radius: 12px;
    font-size: 1rem;
    line-height: 1.6;
}

.plan h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #00ffe5;
}

.plan p {
    margin: 0.5rem 0;
}

.main-img-play {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 3rem auto;
    border-radius: 20px;
    background-image: url("arena.jpg?v=1");
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 60px #003b36aa;
    overflow: hidden;
}

.main-img-room {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 3rem auto;
    border-radius: 20px;
    background-image: url("room.jpg?v=1");
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 60px #003b36aa;
    overflow: hidden;
}

.calendar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    pointer-events: none;
}

.top-text {
    position: absolute;
    top: 20px;
    width: 100%;
    text-align: center;
    font-size: 2rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 0 10px #000;
    letter-spacing: -0.01em;
}

.bottom-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 1.2rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 0 10px #000;
    letter-spacing: -0.01em;
}

.image-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    perspective: 1200px;
    margin: 0.2rem auto;
    border-radius: 20px;
    box-shadow: 0 0 60px #003b36aa; 
}

.image-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.image-slide.active {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 700px) {
    .nav-links a:not(.cta-nav)::after {
        display: none;
    }
    
    .burger-menu {
        display: block;
        cursor: pointer;
    }
    
    .nav-links {
        display: none;
        width: 100%;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    nav {
        position: sticky;
    }
}

@media (max-width: 320px) {
    .case-study-text h2 {
        font-size: 1.25rem;
    }
}

.testimonial {
    padding: 5rem 2rem;
    text-align: center;
    color: #f2f2f2;
}

.testimonial h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: #00ffe5;
    margin-bottom: 3rem;
}

.testimonial-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    background-color: #111;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    width: 300px;
    text-align: center;
    color: #f2f2f2;
    transition: none;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 3px solid #00ffe5;
    object-fit: cover;
}

.testimonial-quote {
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #ccc;
    font-weight: 300;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    font-size: 1.0625rem;
    color: #00ffe5;
}

.case-study {
    background: #000;
    padding: 5rem 2rem;
}

.case-study-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.case-study-image img {
    width: 320px;
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 40px #00ffe544;
    object-fit: cover;
}

.case-study-text {
    flex: 1;
    min-width: 250px;
}

.case-study-text h2 {
    font-size: 2rem;
    color: #00ffe5;
    margin-bottom: 1rem;
}

.case-study-text p {
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #ccc;
    font-weight: 300;
}

.case-study-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #00ffe5;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
    border-radius: 30px;
    box-shadow: 0 0 15px #00ffe5aa;
    transition: background 0.3s ease, transform 0.3s ease;
}

.case-study-button:hover {
    background: #00e6d0;
    transform: translateY(-3px);
}

@media (max-width: 700px) {
    .case-study {
        padding: 2rem 1rem;
    }
    
    .case-study-container {
        gap: 0.8rem;
    }
    
    .case-study-image {
        width: 50%;
    }
    
    .case-study-image img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }
    
    .case-study-text {
        width: 50%;
        min-width: 0;
    }
    
    .case-study-text h2 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .case-study-text p {
        font-size: 0.8rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }
    
    .case-study-button {
        padding: 0.5rem 0.8rem;
        font-size: 0.7rem;
        border-radius: 15px;
    }
}

@media (max-width: 320px) {
    .case-study {
        padding: 1.5rem 0.8rem;
    }
    
    .case-study-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .case-study-image {
        width: 90%;
    }
    
    .case-study-image img {
        width: 100%;
        max-width: 220px;
        margin: 0 auto;
        border-radius: 12px;
    }
    
    .case-study-text {
        width: 100%;
        text-align: center;
    }
    
    .case-study-text h2 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .case-study-text p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .case-study-button {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

.signup-section {
    font-family: 'Inter', sans-serif;
}

.signup-section h2 {
    font-family: 'Space Grotesk', sans-serif;
}

.signup-section input,
.signup-section select,
.signup-section option,
.signup-section button {
    font-family: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
}

.form-message {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: red;
    text-align: center;
}

.login-section, .signup-section {
    background: #111;
    color: #f2f2f2;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 500px;
    border-left: 2px solid #00ffe5;
    border-radius: 12px;
    box-shadow: 0 0 30px #00ffe522;
}

.login-section h2, .signup-section h2 {
    font-size: 2rem;
    color: #00ffe5;
    margin-bottom: 1.5rem;
    text-align: center;
}

.login-form, .signup-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.login-form input,
.signup-form input,
.signup-form select,
.login-form button,
.signup-form button {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    background: #222;
    color: #f2f2f2;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    box-shadow: inset 0 0 5px #000;
}

.login-form button, .signup-form button {
    background: #00ffe5;
    color: #000;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 30px;
    box-shadow: 0 0 15px #00ffe5aa;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.login-form button:hover:enabled, .signup-form button:hover:enabled {
    background: #00e6d0;
    transform: translateY(-3px);
}

.signup-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

button:disabled {
    background-color: #ccc;
    color: #666;
    cursor: not-allowed;
    opacity: 0.7;
    box-shadow: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 700px) {
    .login-section h2, .signup-section h2 {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }
    
    .domains-section h3 {
        font-size: 1.4rem;
        margin-bottom: 1.25rem;
    }
}

.domains-section {
    background: #111;
    color: #f2f2f2;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
    border-left: 2px solid #00ffe5;
    border-radius: 12px;
    box-shadow: 0 0 30px #00ffe522;
    text-align: center;
}

.domains-section h3 {
    font-size: 1.5rem;
    color: #00ffe5;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.domains-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.domain-column {
    flex: 1;
    min-width: 0;
}

.domain-column h4 {
    color: #f2f2f2;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #333;
    font-family: 'Space Grotesk', sans-serif;
}

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

.domain-list li {
    margin-bottom: 0.8rem;
}

.domain-list a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 400;
    display: inline-block;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    width: 100%;
}

.domain-list a:hover {
    color: #00ffe5;
    background-color: rgba(0, 255, 229, 0.05);
}

@media (max-width: 600px) {
    .domains-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .domain-column {
        width: 100%;
    }
    
    .domains-section {
        padding: 1.5rem;
    }
}

.intro-section {
    padding: 4rem 2rem;
}

.intro-section h2 {
    font-family: 'Space Grotesk', sans-serif;
}

.intro-section p {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #ccc;
    font-weight: 300;
}

.play-section, .room-section {
    padding: 4rem 2rem;
}

.play-section h2, .room-section h2 {
    font-family: 'Space Grotesk', sans-serif;
}

.benefits-section {
    padding: 5rem 2rem;
}

.benefits-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.benefit-item {
    background: #111;
    padding: 2rem;
    border-left: 2px solid #00ffe5;
    border-radius: 12px;
}

.benefit-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: #00ffe5;
    margin-bottom: 1rem;
}

.benefit-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #ccc;
    font-weight: 300;
}

.faq-section {
    padding: 5rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: #111;
    padding: 2rem;
    border-left: 2px solid #00ffe5;
    border-radius: 12px;
}

.faq-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: #00ffe5;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #ccc;
    font-weight: 300;
}