@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    min-height: 100%;
}

body {
    position: relative;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

body {
    font-family: "Bricolage Grotesque", sans-serif;
    line-height: 1.6;
    color: #ececec;
    min-height: 100vh;
}

header {
    position: fixed !important;
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    position: fixed;
    width: 100% !important;
    top: 0;
    z-index: 9999 !important;
    border-bottom: 2px solid #4ade80;
}
main {
    padding-top: 90px;
  }
nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #4ade80;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #ececec;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4ade80;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #4ade80;
}

.nav-links a:hover::after {
    width: 100%;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    margin-top: 80px;
    margin-top: 0 !important;
}

.hero-content {
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(20px);
    padding: 4rem 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid #4ade80;
    animation: fadeInUp 1s ease;
    max-width: 700px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 3.5rem;
    color: #4ade80;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 800;
}

.hero p {
    font-size: 1.4rem;
    color: #bbb;
    margin-bottom: 2rem;
}



@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.ip-block {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.ip-block input {
    flex: 1;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #4ade80;
    border-radius: 10px;
    color: #4ade80;
    font-size: 1.2rem;
    font-family: inherit;
    font-weight: 700;
    text-align: center;
}

.copy-btn {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: #1a1a1a;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 222, 128, 0.4);
}

.copy-btn:active {
    transform: translateY(0);
}

section {
    padding: 6rem 2rem;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-size: 3rem;
    color: #4ade80;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 800;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #4ade80, #22c55e);
    margin: 1rem auto;
    border-radius: 2px;
}

.info {
    background: rgba(30, 30, 30, 0.6);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.info-card {
    background: rgba(20, 20, 20, 0.9);
    padding: 2.4rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(74, 222, 128, 0.2);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: #4ade80;
    box-shadow: 0 15px 40px rgba(74, 222, 128, 0.3);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: #bbb;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.highlight {
    color: #4ade80;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.sub-text {
    color: #888;
    font-size: 0.9rem;
}

.features {
    background: rgba(20, 20, 20, 0.9);
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid rgba(74, 222, 128, 0.2);
}

.features h3 {
    color: #4ade80;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.features ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.features li {
    color: #ccc;
    font-size: 1.1rem;
    padding: 0.5rem 0;
}

.gallery-subtitle {
    text-align: center;
    color: #bbb;
    font-size: 1.2rem;
    margin-top: -2rem;
    margin-bottom: 3rem;
}

.carousel-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.carousel-btn {
    background: rgba(74, 222, 128, 0.2);
    border: 2px solid #4ade80;
    color: #4ade80;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: #4ade80;
    color: #1a1a1a;
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-btn:disabled:hover {
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
    transform: scale(1);
}

.carousel-wrapper {
    width: 100%;
    max-width: 1200px;
    height: 500px;
    overflow: hidden;
    position: relative;

    perspective: 1200px;
    perspective-origin: center;
}

.carousel-track {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;

    transition: transform 0.5s ease;
    will-change: transform;
    transform-style: preserve-3d;
}

.carousel-slide {
    height: 450px;
    width: 100%;
    display: flex;
    justify-content: center;
  
    box-shadow: none !important;
  }
  
  .slide-frame {
    height: 100%;
    width: 100%;
    border-radius: 15px;
  
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.55));
  
    overflow: hidden;
  }
  
  .screenshot-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 15px;
    border: 3px solid #4ade80;
    box-shadow: none !important;

    backface-visibility: hidden;
    transform-origin: center;
    will-change: transform, opacity;
    transition: transform 0.5s ease, opacity 0.5s ease;
  }
  


.screenshot-placeholder {
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 222, 128, 0.2), rgba(34, 197, 94, 0.2));
    border: 2px solid #4ade80;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.screenshot-placeholder p {
    font-size: 2rem;
    font-weight: 700;
    color: #4ade80;
    margin-bottom: 0.5rem;
}

.screenshot-placeholder span {
    color: #888;
    font-size: 1rem;
}

.gallery-note {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 2rem;
}

.rules {
    background: rgba(30, 30, 30, 0.6);
}

.rules-list {
    display: grid;
    gap: 2rem;
}

.rule-item {
    background: rgba(20, 20, 20, 0.9);
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #4ade80;
    transition: all 0.3s ease;
}

.rule-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(74, 222, 128, 0.2);
}

.rule-item h3 {
    color: #4ade80;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.rule-item p {
    color: #ccc;
    line-height: 1.8;
}

.rules-note {
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(74, 222, 128, 0.1);
    border: 2px solid #4ade80;
    border-radius: 15px;
    text-align: center;
}

.rules-note p {
    color: #4ade80;
    font-size: 1.1rem;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: rgba(20, 20, 20, 0.9);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(74, 222, 128, 0.2);
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: #4ade80;
    transform: translateY(-5px);
}

.contact-card h3 {
    color: #4ade80;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-value {
    color: #ececec;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

footer {
    background: rgba(20, 20, 20, 0.95);
    padding: 2rem;
    text-align: center;
    border-top: 2px solid #4ade80;
    flex: 0 0 auto;
}

.footer-content p {
    color: #bbb;
    margin-bottom: 0.5rem;
}

.footer-sub {
    color: #888;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .ip-block {
        flex-direction: column;
    }
    
    .carousel-wrapper {
        height: 250px;
    }

    .carousel-slide {
        height: 230px;         
    }
}

html, body { height: 100%; }

body {
  background: radial-gradient(ellipse at bottom, #1B2735 0%, #090A0F 100%) !important;
  overflow-x: hidden;
}

header, main, footer { position: relative; z-index: 2; }

#stars, #stars2, #stars3 {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: transparent;
}

#stars {
  width: 1px; height: 1px;
  animation: animStar 50s linear infinite;
}

#stars2 {
  width: 2px; height: 2px;
  animation: animStar 100s linear infinite;
}

#stars3 {
  width: 3px; height: 3px;
  animation: animStar 150s linear infinite;
}

#stars::after, #stars2::after, #stars3::after {
  content: "";
  position: absolute;
  top: 2000px;
  width: inherit;
  height: inherit;
  background: transparent;
  box-shadow: inherit;
}

@keyframes animStar {
  from { transform: translateY(0); }
  to   { transform: translateY(-2000px); }
}
