:root {
    --bg-dark: #050505;
    --bg-card: #0f0f0f;
    --bg-glass: rgba(15, 15, 15, 0.85);

    --text-main: #ffffff;
    --text-muted: #a0a0a0;

    --fire-primary: #ff4d00;
    --fire-secondary: #ff9d00;
    --fire-accent: #ff0000;

    --gradient-fire: linear-gradient(135deg, var(--fire-accent) 0%, var(--fire-primary) 50%, var(--fire-secondary) 100%);
    --gradient-text: linear-gradient(to right, #ff4d00, #ffcc00);

    --glow-primary: 0 0 20px rgba(255, 77, 0, 0.5);
    --glow-card: 0 10px 30px rgba(255, 69, 0, 0.15);
    --glow-text: 0 0 10px rgba(255, 140, 0, 0.3);

    --border-glow: 1px solid rgba(255, 69, 0, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: #050505;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.fire-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.fire-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    animation: flameFloat 25s infinite alternate ease-in-out;
    mix-blend-mode: screen;
}

.blob-1 {
    top: -20%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--fire-primary), transparent 60%);
    animation-duration: 35s;
}

.blob-2 {
    bottom: -20%;
    right: -10%;
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, #800000, transparent 60%);
    animation-duration: 40s;
    animation-delay: -5s;
}

.blob-3 {
    top: 30%;
    left: 30%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--fire-secondary), transparent 60%);
    animation-duration: 30s;
    animation-delay: -10s;
    opacity: 0.08;
}


@keyframes flameFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, 30px) scale(1.05);
    }
}

.bg-decorations {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.geometric-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 69, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 69, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.4;
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, var(--fire-secondary), transparent);
    border-radius: 50%;
    opacity: 0.2;
    animation: float 20s infinite ease-in-out;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-duration: 25s;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 40%;
    left: 30%;
    animation-duration: 30s;
    animation-delay: -5s;
}

.particle:nth-child(3) {
    top: 60%;
    left: 50%;
    animation-duration: 22s;
    animation-delay: -10s;
}

.particle:nth-child(4) {
    top: 80%;
    left: 70%;
    animation-duration: 28s;
    animation-delay: -15s;
}

.particle:nth-child(5) {
    top: 30%;
    left: 80%;
    animation-duration: 26s;
    animation-delay: -8s;
}

.particle:nth-child(6) {
    top: 70%;
    left: 20%;
    animation-duration: 24s;
    animation-delay: -12s;
}

.particle:nth-child(7) {
    top: 50%;
    left: 90%;
    animation-duration: 27s;
    animation-delay: -6s;
}

.particle:nth-child(8) {
    top: 10%;
    left: 60%;
    animation-duration: 23s;
    animation-delay: -18s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.2;
    }

    50% {
        transform: translate(50px, -50px) scale(1.5);
        opacity: 0.4;
    }
}

::selection {
    background: var(--fire-primary);
    color: white;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--fire-primary);
    border-radius: 5px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 69, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    filter: drop-shadow(0 0 8px rgba(255, 69, 0, 0.5));
}

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

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-main);
    text-shadow: var(--glow-text);
}

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

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

.cta-btn {
    background: var(--gradient-fire);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(255, 69, 0, 0.8), 0 0 80px rgba(255, 69, 0, 0.4);
    color: white;
}

#home {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: transparent;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

#home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, #ff4d00 50%, transparent 50%),
        radial-gradient(2px 2px at 40% 70%, #ff9d00 50%, transparent 50%),
        radial-gradient(2px 2px at 60% 20%, #ff0000 50%, transparent 50%),
        radial-gradient(1px 1px at 80% 40%, #ffffff 50%, transparent 50%),
        radial-gradient(2px 2px at 10% 90%, #ff4d00 50%, transparent 50%);
    background-size: 100% 100%;
    opacity: 0.3;
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    z-index: 10;
}

h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    color: white;
    text-transform: uppercase;
}

.highlight {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 25px rgba(255, 69, 0, 0.6));
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.secondary-btn {
    background: transparent;
    color: var(--text-main);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: 0.3s ease;
}

.secondary-btn:hover {
    border-color: var(--fire-primary);
    color: var(--fire-primary);
    box-shadow: 0 0 15px rgba(255, 69, 0, 0.2);
}

#vouches {
    background-color: transparent;
    position: relative;
}

.section-header {
    margin-bottom: 70px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(to right, #fff, #ffccaa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(255, 69, 0, 0.3);
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.vouches-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.verification-card {
    background: linear-gradient(145deg, #111, #0a0a0a);
    border-radius: 20px;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: var(--border-glow);
    box-shadow: var(--glow-card);
    position: relative;
    text-align: center;
    padding: 40px;
    overflow: hidden;
}

.verification-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 69, 0, 0.1) 0%, transparent 60%);
    animation: pulseGlow 4s infinite alternate;
}

@keyframes pulseGlow {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.ogu-logo {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(to right, #ff4d00, #ff9d00, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 15px rgba(255, 69, 0, 0.5));
}

.verified-badge {
    background: rgba(255, 69, 0, 0.2);
    border: 1px solid var(--fire-primary);
    color: var(--fire-secondary);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 15px rgba(255, 69, 0, 0.2);
}

.verified-badge::before {
    content: '✓';
    font-weight: 800;
}

.ver-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    width: 100%;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.stat-item h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-profile-btn {
    background: var(--gradient-fire);
    color: white;
    padding: 18px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--glow-primary);
    transition: 0.3s ease;
    position: relative;
    z-index: 2;
    display: inline-block;
}

.view-profile-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(255, 69, 0, 0.5);
}

.telegram-reviews {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 600px;
    overflow-y: auto;
    padding-right: 10px;
}

.telegram-reviews::-webkit-scrollbar {
    width: 6px;
}

.telegram-reviews::-webkit-scrollbar-thumb {
    background: rgba(255, 69, 0, 0.3);
}

.tg-card {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    border-left: 4px solid var(--fire-primary);
    position: relative;
    animation: fadeIn 0.5s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tg-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.tg-user {
    color: var(--fire-secondary);
    font-weight: 700;
}

.tg-time {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.tg-content {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .vouches-container {
        grid-template-columns: 1fr;
    }

    .iframe-wrapper,
    .verification-card {
        height: 500px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    .nav-links {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
    }

    .hero-content {
        padding: 0 10px;
    }
}

#shop {
    background: transparent;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 30px;
    border: var(--border-glow);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glow-card);
    border-color: var(--fire-secondary);
}

.product-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--fire-primary);
    text-shadow: var(--glow-primary);
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.product-price {
    font-size: 1.25rem;
    color: var(--fire-secondary);
    font-weight: 600;
    margin-bottom: 15px;
}

.product-desc {
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.buy-btn {
    background: var(--gradient-fire);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    width: 100%;
    transition: 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.3);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 69, 0, 0.6);
}

footer {
    background: linear-gradient(180deg, rgba(10, 5, 0, 0.4) 0%, rgba(15, 5, 0, 0.8) 50%, rgba(5, 5, 5, 0.95) 100%);
    color: white;
    padding: 80px 0 30px;
    border-top: 2px solid rgba(255, 69, 0, 0.3);
    position: relative;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-fire);
    opacity: 0.5;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand p {
    color: #666;
    margin-top: 20px;
    max-width: 320px;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    justify-content: flex-end;
    gap: 80px;
}

.link-column h5 {
    margin-bottom: 24px;
    font-size: 1.1rem;
    color: white;
    font-weight: 600;
}

.link-column ul li {
    margin-bottom: 14px;
}

.link-column ul li a {
    color: #888;
    transition: 0.2s;
}

.link-column ul li a:hover {
    color: var(--fire-primary);
    text-shadow: var(--glow-text);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #111;
    color: #444;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #888;
    transition: 0.3s ease;
    font-size: 1rem;
    padding: 8px 0;
}

.social-link:hover {
    color: var(--fire-primary);
    text-shadow: var(--glow-text);
    transform: translateX(5px);
}

.social-icon-inline {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(255, 69, 0, 0.05);
    border: 1px solid rgba(255, 69, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.social-icon-inline svg {
    width: 22px;
    height: 22px;
    display: block;
}

.discord-icon svg {
    color: #5865F2;
}

.social-link:hover .social-icon-inline {
    background: var(--gradient-fire);
    border-color: var(--fire-primary);
    box-shadow: 0 4px 12px rgba(255, 69, 0, 0.3);
    transform: scale(1.1);
}

.social-link:hover .discord-icon,
.social-link:hover .telegram-icon,
.social-link:hover .ogu-icon {
    color: white;
}

.social-link {
    position: relative;
}

.copied-tooltip {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: linear-gradient(135deg, #ff0000, #ff4d00, #ff9d00);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1000;
}

.social-link.copied .copied-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
