* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*2581eb 009688*/
:root {
    --cyan-start: #00bcd4;
    --cyan-end: #2581eb;
    --purple-accent: #6200ea;
    --white: #ffffff;
    --light-bg: #f0f4f8;
    --dark-text: #1f2937;
    --muted-text: #6b7280;
    --border-color: #e0e0e0;
    --card-bg: #f0f4f8;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-smooth: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--cyan-start), var(--cyan-end));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #00acc1, #1e6ec8);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    line-height: 1.2;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
    border-radius: 0 0 35px 35px;
    height: auto;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 20px;
    max-width: 100%;
    overflow: hidden;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--cyan-light), var(--cyan-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--cyan-start), var(--cyan-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.nav-link.active {
    color: var(--cyan-start);
}

.nav-marker {
    position: absolute;
    bottom: -5px;
    left: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--cyan-start), var(--cyan-end));
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    border-radius: 2px;
    z-index: 10;
}

.cta-link {
    background: linear-gradient(135deg, var(--cyan-start), var(--cyan-end));
    color: var(--white) !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    -webkit-text-fill-color: var(--white);
}

.cta-link::after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-text);
    border-radius: 3px;
    transition: var(--transition);
}



.footer1 {
    background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 20px 30px;
    color: #b0b0b0;
}

.footer-container1 {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

/* Brand Section */
.footer-brand1 {
    grid-column: span 1;
}

.logo1 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.logo-icon1 {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00bcd4 0%, #357abd 100%);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    font-size: 14px;
}

.logo-text1 {
    font-size: 24px;
    font-weight: 600;
    color: #00bcd4;
    letter-spacing: 0.5px;
}



.contact-info1 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item1 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #8a8a8a;
}

.contact-item1 i {
    color: #00bcd4;
    width: 16px;
}

.contact-item1 a {
    color: #8a8a8a;
    text-decoration: none;
    transition: color 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.contact-item1 a:hover {
    color: #00bcd4;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

@keyframes scroll {
    0% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 30px;
        opacity: 0;
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Order Section */
.order {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--cyan-start), var(--cyan-end));
    color: var(--white);
}

.order-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.order .section-title {
    color: var(--white);
    -webkit-text-fill-color: var(--white);
}

.order-text {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-discord {
    background: #5865F2;
    color: var(--white);
}

.btn-discord:hover {
    background: #4752C4;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.order-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.fa-discord {
    color: var(--cyan-start);
}

.fa-instagram {
    color: var(--cyan-start);
}

/* Footer Sections */
.footer-section1 {
    display: flex;
    flex-direction: column;
}
.footer-section {
    display: flex;
    flex-direction: row;
    gap: 100px;
}
@media (max-width: 768px) {
    .footer-section {
    display: flex;
    flex-direction: column;
    gap:1px
}
}

.section-title1 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-links1 {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links1 a {
    color: #8a8a8a;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.footer-links1 a:hover {
    color: #00bcd4;
    padding-left: 8px;
}

/* Newsletter Section */
.footer-newsletter1 {
    grid-column: span 1;
}

.newsletter-text1 {
    font-size: 13px;
    color: #8a8a8a;
    margin-bottom: 20px;
    line-height: 1.5;
}

.newsletter-form1 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-input1 {
    padding: 12px 16px;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.newsletter-input1::placeholder {
    color: #6a6a6a;
}

.newsletter-input1:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.12);
    border-color: #00bcd4;
    box-shadow: 0 0 0 3px rgba(74, 158, 255, 0.1);
}

.newsletter-btn1 {
    padding: 12px 24px;
    background: linear-gradient(135deg, #00bcd4 0%, #357abd 100%);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.newsletter-btn1:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(74, 158, 255, 0.4);
}

.newsletter-btn1:active {
    transform: translateY(0);
}

/* Footer Bottom */
.footer-bottom1 {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-left1,
.footer-bottom-center1,
.footer-bottom-right1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.footer-bottom-left1 p {
    font-size: 13px;
    color: #6a6a6a;
}

.footer-bottom-center1 a {
    color: #8a8a8a;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer-bottom-center1 a:hover {
    color: #00bcd4;
}

.social-icon1 {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8a8a8a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-size: 14px;
}

.social-icon1:hover {
    color: #00bcd4;
    border-color: #00bcd4;
    background-color: rgba(74, 158, 255, 0.1);
    transform: translateY(-4px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container1 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand1 {
        grid-column: span 1;
    }

    .footer-bottom1 {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-left1,
    .footer-bottom-center1,
    .footer-bottom-center1 {
        order: 2;
    }

    .footer-bottom-right1 {
        order: 3;
    }

    .asection {
        padding: 25px;
    }

    .asection h2 {
        font-size: 20px;
    }

}

@media (max-width: 480px) {
    .footer1 {
        padding: 40px 15px 20px;
    }

    .footer-container1 {
        gap: 25px;
    }

    .section-title1 {
        font-size: 15px;
    }

    .newsletter-form1 {
        flex-direction: column;
    }

    .newsletter-btn1 {
        width: 100%;
    }

    .shield-icon {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }

    .asection {
        padding: 20px;
    }

    .aasection h2 {
        font-size: 18px;
    }

    .asection li {
        font-size: 14px;
        padding: 10px 0 10px 25px;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 1.5rem;
    }

    .footer-container1 {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2.5rem;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        gap: 1.2rem;
    }

    .footer-container1 {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        border-radius: 0 0 20px 20px;
    }

    .nav-container {
        padding: 0.6rem 12px;
        max-width: 100%;
        height: 60px;
        overflow: hidden;
    }

    .logo {
        gap: 6px;
        flex-shrink: 0;
    }

    .logo-image {
        width: 28px;
        height: 28px;
        flex-shrink: 0;
    }

    .logo-text {
        font-size: 0.95rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .mobile-menu-toggle {
        display: flex;
        padding: 3px;
        flex-shrink: 0;
    }

    .mobile-menu-toggle span {
        width: 18px;
        height: 2px;
    }

    .nav-menu {
        position: fixed;
        top: 50px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100vw;
        max-width: 100vw;
        padding: 1rem 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        gap: 0.6rem;
        z-index: 999;
        overflow-y: auto;
        max-height: calc(100vh - 50px);
        align-items: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 0.4rem 0;
        font-size: 0.9rem;
        display: block;
        width: 100%;
    }

    .cta-link {
        width: 100%;
        text-align: center;
        padding: 0.6rem 1rem;
        display: block;
        font-size: 0.9rem;
    }

    .nav-marker {
        display: none;
    }
}

    .footer-container1 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand1 {
        grid-column: span 1;
    }

    .footer-bottom1 {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-bottom-left1,
    .footer-bottom-center1,

    .footer-bottom-center1 {
        order: 2;
    }

    .footer-bottom-right1 {
        order: 3;
    }


    .footer-links1 {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .newsletter-form1 {
        flex-direction: column;
    }

    .newsletter-input1 {
        width: 100%;
    }

    .newsletter-btn1 {
        width: 100%;
    }


@media (max-width: 640px) {
    .navbar {
        border-radius: 0 0 15px 15px;
        height: auto;
    }

    .nav-container {
        padding: 0.5rem 8px;
        max-width: 100%;
        overflow: hidden;
    }

    .logo {
        gap: 5px;
        flex-shrink: 0;
    }

    .logo-image {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }

    .logo-text {
        font-size: 0.85rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .mobile-menu-toggle {
        flex-shrink: 0;
        padding: 2px;
    }

    .mobile-menu-toggle span {
        width: 16px;
        height: 1.5px;
    }

    .nav-menu {
        padding: 0.8rem 10px;
        top: 45px;
        max-height: calc(100vh - 45px);
        width: 100vw;
        gap: 0.5rem;
    }

    .nav-link {
        font-size: 0.85rem;
        padding: 0.3rem 0;
    }

    .cta-link {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }

    .nav-marker {
        display: none;
    }
}

    .footer1 {
        padding: 40px 15px 20px;
    }

    .footer-container1 {
        gap: 1.5rem;
    }

    .logo1 {
        margin-bottom: 1rem;
    }

    .logo-icon1 {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }

    .logo-text1 {
        font-size: 20px;
    }

    .tagline1 {
        font-size: 13px;
        margin-bottom: 1.5rem;
        text-align: left;
    }

    .contact-info1 {
        gap: 10px;
    }

    .contact-item1 {
        font-size: 12px;
    }

    .section-title1 {
        font-size: 14px;
        margin-bottom: 1rem;
    }

    .footer-links1 {
        gap: 0.8rem;
    }

    .footer-links1 a {
        font-size: 13px;
    }

    .newsletter-text1 {
        font-size: 12px;
        margin-bottom: 1rem;
    }

    .newsletter-input1 {
        padding: 10px 12px;
        font-size: 13px;
    }

    .newsletter-btn1 {
        padding: 10px 20px;
        font-size: 13px;
    }

    .footer-bottom1 {
        gap: 1rem;
    }

    .footer-bottom-left1 p {
        font-size: 12px;
    }

    .footer-bottom-center1 a {
        font-size: 12px;
    }

    .social-icon1 {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }


@media (max-width: 480px) {
    .navbar {
        border-radius: 0 0 12px 12px;
        height: auto;
    }

    .nav-container {
        padding: 0.4rem 6px;
        max-width: 100%;
        overflow: hidden;
    }

    .logo {
        gap: 4px;
        flex-shrink: 0;
    }

    .logo-image {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
    }

    .logo-text {
        font-size: 0.8rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .mobile-menu-toggle {
        padding: 2px;
        flex-shrink: 0;
    }

    .mobile-menu-toggle span {
        width: 14px;
        height: 1.5px;
    }

    .nav-menu {
        padding: 0.7rem 8px;
        top: 40px;
        max-height: calc(100vh - 40px);
        width: 100vw;
        gap: 0.4rem;
    }

    .nav-link {
        font-size: 0.8rem;
        padding: 0.3rem 0;
    }

    .cta-link {
        padding: 0.5rem 0.7rem;
        font-size: 0.8rem;
    }

    .nav-marker {
        display: none;
    }
}

    .footer1 {
        padding: 30px 12px 15px;
    }

    .footer-container1 {
        gap: 1.2rem;
        margin-bottom: 2rem;
    }

    .logo1 {
        margin-bottom: 0.8rem;
    }

    .logo-icon1 {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }

    .logo-text1 {
        font-size: 18px;
    }

    .tagline1 {
        font-size: 12px;
        margin-bottom: 1.2rem;
    }

    .contact-info1 {
        gap: 8px;
    }

    .contact-item1 {
        font-size: 11px;
    }

    .contact-item1 i {
        width: 14px;
    }

    .section-title1 {
        font-size: 13px;
        margin-bottom: 0.8rem;
    }

    .footer-links1 {
        gap: 0.6rem;
    }

    .footer-links1 a {
        font-size: 12px;
    }

    .newsletter-text1 {
        font-size: 11px;
        margin-bottom: 0.8rem;
    }

    .newsletter-input1 {
        padding: 8px 10px;
        font-size: 12px;
        margin-bottom: 0.8rem;
    }

    .newsletter-btn1 {
        padding: 8px 16px;
        font-size: 12px;
        gap: 6px;
    }

    .footer-bottom1 {
        gap: 0.8rem;
        padding-top: 1.5rem;
    }

    .footer-bottom-left1 p {
        font-size: 11px;
    }

    .footer-bottom-center1 a {
        font-size: 11px;
    }

    .social-icon1 {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
