@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=VT323&display=swap');

:root {
    --primary-font: 'Montserrat', sans-serif;
    --code-font: 'VT323', monospace;
    --primary-color: #FFDA63;
    --secondary-color: #E68A00;
    --dark-bg: #0d0d0d;
    --header-footer-bg: #1a1a1a;
    --text-color-light: #e0e0e0;
    --text-color-muted: #b0aeae;
    --glow-color-primary: #FFDA63;
    --glow-color-secondary: #FFEB3B;
    --glow-color-accent: #E68A00;
    --button-bg: #2f3337;
    --button-hover-bg: #3a3f43;
    --icon-purple: #9c27b0;
    --icon-green: #4caf50;
    --icon-blue: #2196f3;
    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--primary-font);
    background-color: var(--dark-bg);
    color: var(--text-color-light);
    text-align: right;
    line-height: 1.7;
    letter-spacing: 0.3px;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-speed) ease, text-shadow var(--transition-speed) ease;
}

a:hover {
    color: var(--glow-color-secondary);
    text-shadow: 0 0 8px var(--glow-color-primary), 0 0 15px var(--glow-color-primary);
}

h1, h2, h3, h4 {
    font-family: var(--primary-font);
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5em, 6vw, 4em); }
h2 { font-size: clamp(2em, 5vw, 3em); color: var(--glow-color-secondary); }
h3 { font-size: clamp(1.5em, 3vw, 2em); }
p { margin-bottom: 1rem; }

@keyframes flicker-glow {
    0%, 100% { opacity: 0.9; text-shadow: 0 0 5px var(--secondary-color), 0 0 10px var(--secondary-color), 0 0 15px var(--primary-color); }
    50% { opacity: 1; text-shadow: 0 0 8px var(--primary-color), 0 0 15px var(--primary-color), 0 0 20px var(--glow-color-secondary); }
}

@keyframes typing-effect {
    from { width: 0 }
    to { width: 100% }
}

@keyframes gradient-move {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes text-glow {
    0%, 100% { text-shadow: 0 0 5px var(--primary-color); }
    50% { text-shadow: 0 0 10px var(--primary-color), 0 0 15px var(--glow-color-secondary); }
}

header {
    background-color: var(--header-footer-bg);
    padding: 1em 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--secondary-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-logo {
    width: 50px;
    height: auto;
    filter: drop-shadow(0 0 6px var(--primary-color));
    transition: transform 0.3s ease;
}
.brand-logo:hover {
    transform: scale(1.1);
}

#brand-name {
    font-family: var(--code-font);
    font-size: clamp(1.8em, 6vw, 3em);
    color: var(--primary-color);
    animation: flicker-glow 2s infinite alternate;
    letter-spacing: 1px;
    display: inline-block;
    padding: 0.2em 0.5em;
}

#brand-name span {
    display: inline-block;
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

#brand-name span:hover {
    transform: scale(1.15);
    color: var(--glow-color-secondary);
    text-shadow: 0 0 15px var(--primary-color);
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

header nav ul li a {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-color-light);
    padding-bottom: 5px;
    position: relative;
}

header nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-speed) ease;
}

header nav ul li a:hover::after {
    width: 100%;
}

#hero {
    background: linear-gradient(-45deg, #0d0d0d, #1a1a1a, var(--secondary-color), var(--primary-color), #1a1a1a, #0d0d0d);
    background-size: 300% 300%;
    animation: gradient-move 15s ease infinite;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6em 1em;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 10px 30px rgba(0,0,0,0.7), inset 0 -10px 30px rgba(0,0,0,0.7);
}

#hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2.5em, 8vw, 5em);
    color: var(--glow-color-secondary);
    margin-bottom: 0.5em;
    text-shadow: 0 0 10px var(--primary-color), 0 0 20px var(--primary-color), 0 0 30px var(--secondary-color);
    animation: text-glow 1.5s infinite alternate;
}

.animated-text {
    font-size: clamp(1.2em, 3vw, 1.8em);
    color: var(--text-color-light);
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid var(--primary-color);
    width: 0;
    animation: typing-effect 4s steps(40, end) forwards, text-glow 1.5s infinite alternate 4s;
    animation-delay: 1s;
    margin-bottom: 1.5rem;
}

#hero p {
    font-size: clamp(1.1em, 2vw, 1.4em);
    color: var(--text-color-muted);
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-color);
    color: var(--dark-bg);
    padding: 15px 35px;
    border-radius: 8px;
    font-size: 1.3rem;
    font-weight: 700;
    transition: background-color var(--transition-speed), transform var(--transition-speed), box-shadow var(--transition-speed);
    box-shadow: 0 6px 15px rgba(255, 170, 0, 0.4);
    margin-top: 2rem;
}

.cta-button i {
    font-size: 1.5rem;
}

.cta-button:hover {
    background-color: var(--glow-color-secondary);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 235, 59, 0.6);
}

.content-section {
    padding: 5em 0;
    position: relative;
}

.content-section h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 15px;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    border-radius: 2px;
}

.content-section h2 i {
    margin-left: 15px;
    color: var(--primary-color);
}

#how-to-buy p, #collaboration p {
    font-size: 1.15em;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    text-align: center;
    color: var(--text-color-muted);
}

.my-button {
  display: inline-block;
  padding: 14px 30px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-color-light);
  background-color: var(--button-bg);
  border: none;
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: background-color var(--transition-speed), transform var(--transition-speed), box-shadow var(--transition-speed);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
  margin-top: 1rem;
}

.my-button:hover {
  background-color: var(--button-hover-bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
}

.stats-section {
    background-color: #111;
    padding: 6em 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item {
    padding: 25px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 170, 0, 0.1);
}

.stat-item i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.stat-item .counter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--glow-color-secondary);
    display: block;
    font-family: var(--code-font);
}

.stat-item p {
    font-size: 1.1em;
    color: var(--text-color-muted);
    margin: 0.5rem 0 0 0;
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    padding: 20px 0;
}

.client-logos img {
    max-width: 150px;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.client-logos img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.clients-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 1.1em;
    color: var(--text-color-muted);
}

footer {
    background-color: var(--header-footer-bg);
    padding: 2.5em 0;
    text-align: center;
    border-top: 2px solid var(--secondary-color);
    margin-top: 4em;
}

footer p {
    margin-bottom: 0.5rem;
    color: var(--text-color-muted);
}

footer p:last-child {
    font-size: 0.9em;
}

@media only screen and (max-width: 992px) {
    header nav ul {
        gap: 15px;
    }
    header nav ul li a {
        font-size: 1rem;
    }
    .cta-button {
        font-size: 1.1rem;
        padding: 12px 25px;
    }
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media only screen and (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    header nav {
        margin-top: 10px;
    }
    header nav ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    #brand-name {
        font-size: clamp(1.8em, 8vw, 3em);
    }
    .hero-title {
         font-size: clamp(2.2em, 8vw, 4em);
    }
    .animated-text {
        font-size: clamp(1.1em, 4vw, 1.6em);
        animation-duration: 3s;
    }
    #hero {
        min-height: 400px;
        padding: 4em 1em;
    }
    .cta-button {
        font-size: 1.2rem;
        padding: 12px 25px;
    }
    .content-section {
        padding: 4em 0;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .client-logos img {
        max-width: 120px;
    }
}

@media only screen and (max-width: 480px) {
    #brand-name {
        font-size: clamp(1.5em, 10vw, 2.5em);
        letter-spacing: 1px;
    }
    .brand-logo {
        width: 40px;
    }
    .hero-title {
        font-size: clamp(2em, 10vw, 3.2em);
    }
    .animated-text {
        font-size: clamp(1em, 4.5vw, 1.4em);
        border-right-width: 2px;
        animation-duration: 2.5s;
    }
    #hero {
        min-height: 300px;
        padding: 3em 1em;
    }
    .cta-button {
        font-size: 1.1rem;
        padding: 10px 20px;
        width: 90%;
        justify-content: center;
    }
    .cta-button i { font-size: 1.2rem; }
    .content-section h2 { font-size: 1.8em; }
    .stat-item .counter { font-size: 2.5rem; }
    .stat-item p { font-size: 1em;}
    footer {
        padding: 1.5em 0;
        margin-top: 3em;
    }
}
