* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Manrope', sans-serif;
    background: #0a3d3d;
    color: #e6f0f0;
    overflow-x: hidden;
    position: relative;
}
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"%3E%3Cline x1="0" y1="0" x2="100" y2="100" stroke="%23bfff00" stroke-width="0.5" opacity="0.2"/%3E%3Cline x1="100" y1="0" x2="0" y2="100" stroke="%23bfff00" stroke-width="0.5" opacity="0.2"/%3E%3C/svg%3E') repeat;
    z-index: -1;
    animation: gridPulse 15s linear infinite;
}
@keyframes gridPulse {
    0% { opacity: 0.2; }
    50% { opacity: 0.4; }
    100% { opacity: 0.2; }
}
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 40px;
}
.hero {
    background: linear-gradient(135deg, #ff4040, #0a3d3d);
    padding: 140px 40px;
    text-align: center;
    border-radius: 30px;
    position: relative;
    box-shadow: 0 0 60px rgba(255, 64, 64, 0.5);
    overflow: hidden;
}
.grid-portal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"%3E%3Crect x="20" y="20" width="60" height="60" fill="none" stroke="%23bfff00" stroke-width="1" opacity="0.3"/%3E%3C/svg%3E') center;
    animation: portalPulse 3s ease-in-out infinite;
    opacity: 0.3;
}
@keyframes portalPulse {
    0% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.5; }
    100% { transform: scale(1); opacity: 0.3; }
}
.hero h1 {
    font-family: 'Teko', sans-serif;
    font-size: 84px;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(255, 64, 64, 0.8);
    margin-bottom: 30px;
    position: relative;
}
.hero p {
    font-size: 30px;
    margin-bottom: 60px;
    position: relative;
}
.cta-button {
    background: #bfff00;
    color: #0a3d3d;
    padding: 20px 80px;
    font-size: 26px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 15px;
    box-shadow: 0 0 35px rgba(191, 255, 0, 0.7);
    transition: all 0.3s ease;
}
.cta-button:hover {
    background: #ff4040;
    color: #ffffff;
    box-shadow: 0 0 45px rgba(255, 64, 64, 0.9);
    transform: scale(1.1);
}
.section {
    padding: 120px 40px;
    text-align: center;
}
.section h2 {
    font-family: 'Teko', sans-serif;
    font-size: 56px;
    color: #ff4040;
    text-shadow: 0 0 20px rgba(255, 64, 64, 0.5);
    margin-bottom: 50px;
}
.auction-block {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    padding: 30px;
}
.auction-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 64, 64, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.auction-item:hover {
    transform: translateY(-20px);
    box-shadow: 0 0 40px rgba(255, 64, 64, 0.6);
}
.auction-item img {
    max-width: 100%;
    border-radius: 15px;
}
.auction-item h3 {
    font-size: 28px;
    margin: 20px 0;
    color: #ffffff;
}
.auction-item p {
    color: #bfff00;
    font-weight: 700;
    font-size: 24px;
}
.auction-item .timer {
    color: #ff4040;
    font-size: 20px;
}
.trade-history {
    display: flex;
    overflow-x: auto;
    gap: 40px;
    padding: 30px;
    scroll-behavior: smooth;
}
.trade-history::-webkit-scrollbar {
    height: 10px;
}
.trade-history::-webkit-scrollbar-thumb {
    background: #ff4040;
    border-radius: 5px;
}
.history-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 20px;
    min-width: 300px;
    border: 1px solid rgba(255, 64, 64, 0.3);
}
.rarity-filter {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}
.rarity-filter button {
    background: rgba(255, 255, 255, 0.03);
    color: #bfff00;
    padding: 15px 30px;
    border: 1px solid #ff4040;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.rarity-filter button:hover {
    background: #ff4040;
    color: #ffffff;
}
.rewards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 30px;
}
.reward-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 64, 64, 0.3);
    transition: transform 0.3s ease;
}
.reward-item:hover {
    transform: scale(1.1);
}
.reward-item h3 {
    font-size: 24px;
    color: #ff4040;
    margin-bottom: 15px;
}
.news-grid, .community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    padding: 30px;
}
.news-item, .community-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 64, 64, 0.3);
    transition: transform 0.3s ease;
}
.news-item:hover, .community-item:hover {
    transform: translateY(-15px);
}
.support-item, .policy-section, .about-section {
    background: rgba(255, 255, 255, 0.03);
    padding: 50px;
    border-radius: 20px;
    margin: 20px 0;
    border: 1px solid rgba(255, 64, 64, 0.3);
}
.support-item summary {
    padding: 20px;
    font-size: 22px;
    color: #ff4040;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.support-item summary::after {
    content: '+';
    font-size: 26px;
}
.support-item[open] summary::after {
    content: '-';
}
.support-item p {
    padding: 20px;
    background: rgba(255, 64, 64, 0.1);
}
.refund-policy, .contact {
    background: rgba(255, 255, 255, 0.03);
    padding: 60px;
    border-radius: 20px;
    margin: 20px 0;
    border: 1px solid rgba(255, 64, 64, 0.3);
}
nav {
    position: sticky;
    top: 0;
    background: rgba(10, 61, 61, 0.95);
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    text-align: center;
}
nav a {
    color: #ff4040;
    text-decoration: none;
    margin: 0 30px;
    font-size: 20px;
    font-weight: 700;
    transition: color 0.3s ease;
}
nav a:hover {
    color: #bfff00;
}
footer {
    background: rgba(10, 61, 61, 0.95);
    padding: 60px;
    text-align: center;
    font-size: 18px;
    border-top: 1px solid rgba(255, 64, 64, 0.3);
}
footer a {
    color: #ff4040;
}
footer a:hover {
    color: #bfff00;
}
h1, h2 {
    font-family: 'Teko', sans-serif;
    color: #ff4040;
}
a {
    color: #ff4040;
    text-decoration: none;
}
a:hover {
    color: #bfff00;
}
@media (max-width: 768px) {
    .hero h1 {
        font-size: 56px;
    }
    .hero p {
        font-size: 22px;
    }
    .auction-block, .rewards, .news-grid, .community-grid {
        grid-template-columns: 1fr;
    }
    .trade-history {
        flex-direction: column;
    }
    nav a {
        margin: 0 15px;
        font-size: 16px;
    }
}