.hero,
.section {
    position: relative
}

.contact-card,
.download-note,
.hero,
.section-header {
    text-align: center
}

.domain-item:hover,
.download-btn:hover,
.secondary-btn:hover,
.stat-item:hover {
    border-color: var(--primary)
}

.contact-card,
.social-card {
    position: relative;
    overflow: hidden
}

.contact-btn,
.domain-item,
.download-btn,
.social-card a {
    text-decoration: none
}

:root {
    --primary: #a1fd2e;
    --primary-gradient: linear-gradient(135deg, #a1fd2e 0%, #059669 100%);
    --dark-bg: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0a0a0f 100%);
    --card-bg: rgb(24, 29, 34);
    --card-border: rgb(24, 29, 34);
    --text-primary: #ffffff;
    --text-secondary: #a1fd2e;
    --text-muted: rgba(255, 255, 255, 0.6)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

color:var(--text-primary);
overflow-x:hidden
}

@keyframes bgPulse {

    0%,
    100% {
        opacity: .5
    }

    50% {
        opacity: .9
    }
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0
    }

    10%,
    90% {
        opacity: .5
    }

    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0
    }
}

.hero {
    padding: 100px 20px 60px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    z-index: 1
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    margin-bottom: 25px;
    animation: 3s ease-in-out infinite badgeFloat
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-5px)
    }
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    fill: currentColor
}

.hero-title {
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px
}

.hero-title .gradient-text {
    background: var(--primary-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.domain-item:hover,
.secondary-btn:hover,
.stat-item:hover {
    background: #1c2228
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-muted);
    margin-bottom: 35px;
    line-height: 1.7
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: .95rem;
    transition: .3s;
    border: 2px solid transparent
}

.domain-item,
.stat-icon {
    align-items: center;
    display: flex
}

.primary-btn {
    background: var(--primary-gradient);
    color: #fff;
    box-shadow: 0 6px 20px #1c2228
}

.secondary-btn,
.stat-item {
    background: var(--card-bg)
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px #1c2228
}

.secondary-btn {
    color: var(--text-primary);
    border-color: var(--card-border)
}

.section-badge,
.stat-item {
    border: 1px solid var(--card-border)
}

.primary-btn svg,
.secondary-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px
}

.stat-item {
    border-radius: 12px;
    padding: 20px;
    transition: .3s
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-gradient);
    border-radius: 10px;
    justify-content: center;
    margin: 0 auto 10px
}

.stat-icon svg {
    width: 20px;
    height: 20px;
    fill: white
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 5px
}

.stat-label {
    font-size: .8rem;
    color: var(--text-muted);
    font-weight: 600
}

.domain-status,
.domains-section h3,
.section-badge {
    color: var(--primary);
    font-weight: 700
}

.domains-section {
    margin-top: 50px
}

.domains-section h3 {
    font-size: 1.1rem;
    margin-bottom: 20px
}

.domains-list {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px
}

.domain-item {
    background: var(--card-bg);
    border: 2px solid var(--card-border);
    border-radius: 12px;
    padding: 18px 20px;
    justify-content: space-between;
    transition: .3s
}

.domain-icon,
.domain-info {
    display: flex;
    align-items: center
}

.domain-item:hover {
    transform: translateX(5px)
}

.domain-info {
    gap: 12px;
    flex: 1
}

.domain-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-gradient);
    border-radius: 10px;
    justify-content: center;
    flex-shrink: 0
}

.domain-icon svg {
    width: 22px;
    height: 22px;
    fill: white
}

.domain-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3px
}

.domain-text p {
    font-size: .8rem;
    color: var(--text-muted)
}

.domain-status {
    font-size: .75rem;
    padding: 6px 12px;
    border-radius: 50px;
    background: #1c2228;
    white-space: nowrap
}

.domain-status.inactive {
    background: rgba(239, 68, 68, .2);
    color: #ef4444
}

.section {
    padding: 60px 20px
}

.section-header {
    margin-bottom: 50px
}

.section-badge {
    display: inline-block;
    background: var(--card-bg);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px
}

.feature-card,
.social-card {
    padding: 28px;
    text-align: center
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 12px
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    transition: .3s
}

.contact-card:hover,
.feature-card:hover,
.social-card:hover {
    background: #1c2228;
    border-color: var(--primary);
    transform: translateY(-6px)
}

.feature-icon,
.social-card svg {
    margin: 0 auto 16px;
    box-shadow: 0 4px 15px #1c2228;
    background: var(--primary-gradient)
}

.contact-card,
.download-btn,
.social-card {
    background: var(--card-bg)
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center
}

.download-btn,
.social-card {
    border: 2px solid var(--card-border);
    transition: .3s
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    fill: white
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary)
}

.feature-description {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.5
}

.download-btn,
.social-card h4 {
    color: var(--text-primary);
    font-weight: 700
}

.contact-text,
.download-note,
.social-card p {
    color: var(--text-muted)
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto
}

.social-card {
    border-radius: 16px
}

.contact-card::before,
.social-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: var(--primary-gradient);
    transition: left .4s
}

.contact-card:hover::before,
.social-card:hover::before {
    left: 100%
}

.social-card svg {
    width: 48px;
    height: 48px;
    fill: white;
    display: block;
    padding: 10px;
    border-radius: 12px
}

.social-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px
}

.social-card p {
    font-size: .9rem;
    margin-bottom: 16px;
    line-height: 1.5
}

.social-card a {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    font-size: .9rem;
    transition: .3s
}

.social-card a:hover {
    transform: translateX(4px)
}

.contact-section,
.download-section {
    padding: 60px 20px
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    max-width: 700px;
    margin: 40px auto 0
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: .95rem
}

.download-btn:hover {
    background: #1c2228;
    transform: translateY(-2px)
}

.download-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor
}

.download-note {
    font-size: .9rem;
    font-weight: 600;
    margin-top: 24px
}

.contact-card {
    max-width: 600px;
    margin: 0 auto;
    border: 2px solid var(--card-border);
    border-radius: 16px;
    padding: 40px 30px;
    transition: .3s
}

.contact-btn,
.contact-icon {
    background: var(--primary-gradient)
}

.contact-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px #1c2228
}

.contact-icon svg {
    width: 32px;
    height: 32px;
    fill: white
}

.contact-title {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 12px
}

.contact-text {
    font-size: .95rem;
    margin-bottom: 24px;
    line-height: 1.6
}

.contact-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: .9rem;
    transition: .3s;
    box-shadow: 0 4px 12px #1c2228
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px #1c2228
}

.contact-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor
}

@media (max-width:768px) {
    .hero {
        padding: 40px 15px 50px
    }

    .contact-section,
    .section {
        padding: 50px 15px
    }

    .download-buttons,
    .hero-cta {
        gap: 12px
    }

    .primary-btn,
    .secondary-btn {
        font-size: .85rem;
        padding: 12px 24px
    }

    .features-grid,
    .social-grid {
        gap: 16px
    }

    .download-btn {
        font-size: .85rem;
        padding: 12px 20px
    }

    .contact-buttons {
        gap: 10px
    }

    .contact-btn {
        font-size: .85rem;
        padding: 10px 18px
    }
}


.social-container {
    text-align: center;
    padding: 30px;
    border-radius: 20px
}

.social-links a {
    display: inline-block;
    margin: 15px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    background: #0F3460;
    color: #fff;
    font-size: 1em;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgb(0 0 0 / .3)
}

.social-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgb(0 0 0 / .5)
}

.social-links a.discord {
    background: #7289DA
}

.social-links a.telegram {
    background: #08c
}

.social-links a.instagram {
    background: #E1306C
}


.download-page {
    position: relative;
    margin: 4rem auto;
    max-width: 1100px;
    padding: 4rem;
    background-color: #22252E;
    background-image: url(/assets/images/app-download/apk-bg.jpg);
    background-position: center center;
    background-size: cover;
}

.download-page .dp-flex {
    display: flex;
    align-items: stretch;
    flex-direction: row-reverse;
    gap: 4rem;
}

.download-page .dp-flex .dp-screen {
    width: 320px;
    flex-shrink: 0;
}

.download-page .dp-flex .dp-screen img {
    width: 100%;
}

.download-page .dp-flex .dp-content {
    flex-grow: 1;
}

.dp-head-lg {
    font-size: 2em;
    line-height: 1.4;
    color: #fff;
    font-weight: 600;
    margin-bottom: .5rem;
}

.dp-head-md {
    font-size: 1.6em;
    line-height: 1.4;
    color: #fff;
    font-weight: 500;
    margin-bottom: .5rem;
}

.is-fea {
    padding: 1rem 0 3rem;
}

.is-fea .dp-ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.is-fea .dp-ul li {
    position: relative;
    padding: .5rem 0 .5rem 1.2rem;
    font-size: 15px;
}

.is-fea .dp-ul li:before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #fff;
    display: block;
    position: absolute;
    top: calc(50% - 3px);
    left: 0;
}

.dp-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
}

.dp-buttons .btn {
    padding: .75rem 1rem;
    border-radius: .4rem;
    font-size: 14px;
    font-weight: 500;
    display: block;
}

@media screen and (max-width: 860px) {
    .download-page {
        margin: 2rem -15px;
        padding: 2rem;
        margin-top: -25px;
        padding-top: 4rem;
    }

    .download-page .dp-flex {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .download-page .dp-flex>div {
        width: 100%;
    }

    .download-page .dp-flex .dp-screen {
        width: 200px;
    }

    .is-fea .dp-ul li {
        text-align: center;
    }

    .is-fea .dp-ul li:before {
        position: relative;
        top: auto;
        left: auto;
        display: inline-block;
        margin-right: 1rem;
        vertical-align: middle;
    }

    .download-page .dp-buttons {
        margin: 0 auto 2rem
    }

    .dp-head-lg {
        font-size: 1.6em;
        text-align: center;
    }

    .dp-head-md {
        font-size: 1.3em;
        text-align: center;
    }
}


.links-container {
    max-width: 420px;
    margin: 20px auto 0
}

.link-card {
    display: flex;
    align-items: center;
    padding: 15px 18px;
    border-radius: 12px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: 0.25s
}

.link-card i {
    font-size: 18px;
    margin-right: 12px
}

.primary {
    background: #2d2f36
}

.link-card:hover {
    transform: translateX(6px);
    background: #3a3d45
}