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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

header {
    position: fixed;
    top: 100px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px;
}

nav {
    display: flex;
    justify-content: flex-end;
}

.shop-btn {
    background: linear-gradient(135deg, #00d4aa 0%, #00a8cc 100%);
    color: #0a0a0a;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
    position: relative;
    z-index: 1001;
}

.shop-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.4);
    background: linear-gradient(135deg, #00e4ba 0%, #00b8dc 100%);
}

main {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
}

.content-container {
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00d4aa 0%, #00a8cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.description {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: 40px;
    color: #cccccc;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.discord-btn {
    background: rgba(0, 212, 170, 0.1);
    color: #00d4aa;
    border: 2px solid #00d4aa;
    padding: 14px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    text-decoration: none;
    display: inline-block;
}

.discord-btn:hover {
    background: rgba(0, 212, 170, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.3);
}

.dashboard-btn {
    background: linear-gradient(135deg, #00d4aa 0%, #00a8cc 100%);
    color: #0a0a0a;
    border: none;
    padding: 14px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 212, 170, 0.3);
}

.dashboard-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.4);
    background: linear-gradient(135deg, #00e4ba 0%, #00b8dc 100%);
}

.feature-text {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(0, 212, 170, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 170, 0.2);
    backdrop-filter: blur(10px);
}

.feature-text h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 15px;
    color: #00d4aa;
}

.feature-text p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    line-height: 1.6;
    color: #cccccc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.feature-box {
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    text-align: left;
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1) 0%, rgba(0, 168, 204, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.feature-box:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 170, 0.5);
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.2);
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-box h3 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 600;
    margin-bottom: 12px;
    color: #00d4aa;
    position: relative;
    z-index: 1;
}

.feature-box p {
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    line-height: 1.5;
    color: #cccccc;
    position: relative;
    z-index: 1;
}

footer {
    position: relative;
    z-index: 10;
    background: rgba(0, 0, 0, 0.9);
    border-top: 1px solid rgba(0, 212, 170, 0.2);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    margin-top: 80px;
}

.footer-content {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content p {
    color: #888888;
    font-size: 14px;
    margin: 0;
    transition: color 0.3s ease;
}

.footer-content p:hover {
    color: #00d4aa;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .content-container {
        padding: 0 20px;
    }
    
    .feature-text {
        padding: 20px;
    }
    
    header {
        padding: 15px;
    }
    
    .shop-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
        gap: 15px;
        margin-top: 30px;
        max-width: 100%;
    }
    
    .feature-box {
        padding: 20px;
    }
}
