:root {
    --accent: #dc2626; /* Red color */
    --glass-bg: rgba(15, 15, 20, 0.15);
    --hover-glow: rgba(220, 38, 38, 0.3);
    --accent-primary: #ff0037;
    --accent-secondary: #ff4757;
    --text-primary: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
    color: white;
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    max-width: 1150px;
    width: calc(100% - 40px);
    padding: 16px 32px;
    background: rgba(15, 15, 20, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(255, 0, 55, 0.3);
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
    font-size: 18px;
    font-weight: bold;
    background: linear-gradient(45deg, var(--accent-primary), var(--accent-secondary), #ffffff);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientSlide 3s ease-in-out infinite;
}

@keyframes gradientSlide {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.nav-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--accent-primary);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 24px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 16px 20px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 15, 20, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 0 0 20px 20px;
        padding: 20px;
        flex-direction: column;
        gap: 16px;
        margin-top: 10px;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
}

.animated-text {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.text-slide {
    display: inline-block;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideIn 0.8s ease forwards;
}

.text-slide:nth-child(1) { animation-delay: 0.2s; }
.text-slide:nth-child(2) { animation-delay: 1.4s; }
.text-slide:nth-child(3) { animation-delay: 2.6s; }
.text-slide:nth-child(4) { animation-delay: 3.8s; }

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.tagline {
    font-size: 2rem;
    font-weight: 600;
    margin-top: 2rem;
    background: linear-gradient(45deg, #dc2626, #b91c1c, #ef4444);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Giveaway Section */
.giveaway-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.giveaway-text {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: #e5e7eb;
}

.giveaway-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #9ca3af;
    margin-bottom: 2rem;
}

.discord-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #5865f2;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.3);
}

.discord-button:hover {
    background: #4752c4;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.4);
}

.discord-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Store Section */
.store-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    max-width: 400px;
    width: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: #dc2626;
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2);
}

.product-image {
    width: 100%;
    height: 200px;
    background: url('/assets/emenDemon.png') center/cover;
    background-color: linear-gradient(45deg, #1f2937, #374151);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 0.9rem;
}

.product-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.product-description {
    color: #9ca3af;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.buy-button {
    width: 100%;
    background: linear-gradient(45deg, #dc2626, #b91c1c);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1);
}

.buy-button:hover {
    background: linear-gradient(45deg, #b91c1c, #991b1b);
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}

.buy-button:active {
    transform: scale(0.98);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.show {
    display: flex;
    opacity: 1;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 20px;
    padding: 2rem;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.7) translateY(-50px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.show .modal-content {
    transform: scale(1) translateY(0);
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close:hover {
    color: #dc2626;
    transform: scale(1.1);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.modal-price {
    font-size: 1.5rem;
    color: #dc2626;
    font-weight: 600;
}

.requirements-section {
    margin-bottom: 2rem;
}

.requirements-header {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    padding: 1rem;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.requirements-header:hover {
    background: rgba(220, 38, 38, 0.2);
}

.requirements-content {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0 0 10px 10px;
    border: 1px solid rgba(220, 38, 38, 0.1);
    border-top: none;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    transform: rotate(180deg);
}

.dropdown-arrow.active {
    transform: rotate(0deg);
}

.description-section {
    margin-bottom: 2rem;
}

.description-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.description-text {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-dropdown {
    margin-bottom: 1rem;
}

.feature-header {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.2);
    padding: 1rem;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.feature-header:hover {
    background: rgba(220, 38, 38, 0.2);
}

.feature-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0 0 10px 10px;
}

.feature-content.active {
    max-height: 500px;
    padding: 1rem;
}

.feature-category {
    margin-bottom: 1.5rem;
}

.feature-category h4 {
    color: #dc2626;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-list {
    list-style: none;
    padding-left: 1rem;
}

.feature-list li {
    color: #d1d5db;
    margin-bottom: 0.3rem;
    position: relative;
}

.feature-list li::before {
    content: "•";
    color: #dc2626;
    font-weight: bold;
    position: absolute;
    left: -1rem;
}

.disclaimer {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 2rem;
    color: #fbbf24;
    font-size: 0.9rem;
}

.disclaimer a {
    color: #5865f2;
    text-decoration: none;
}

.disclaimer a:hover {
    text-decoration: underline;
}

.purchase-button {
    width: 100%;
    background: linear-gradient(45deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.purchase-button:hover {
    background: linear-gradient(45deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

/* Info Cards Section */
.info-cards-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1), rgba(220, 20, 60, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 16px;
}

.info-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.3);
    border-color: rgba(255, 0, 0, 0.6);
}

.info-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.card-header {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ff0000, #dc143c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.card-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .animated-text {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.5rem;
    }

    .giveaway-text {
        font-size: 1.25rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .animated-text {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.25rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Background decorations */
.bg-decoration {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

.bg-decoration:nth-child(1) {
    top: 10%;
    left: 80%;
    animation-delay: 0s;
}

.bg-decoration:nth-child(2) {
    top: 60%;
    left: 10%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}