/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid #333;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo h2 {
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 1.5rem;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.nav-subtitle {
    font-size: 0.8rem;
    color: #888;
    font-weight: 300;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover,
.nav-link.active {
    color: #00d4ff;
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #ff6b35);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #e0e0e0;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-content {
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 4rem;
    font-weight: 900;
    color: #00d4ff;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
    margin-bottom: 1rem;
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ccc;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    color: #000;
    border-color: #00d4ff;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #0099cc, #00d4ff);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: #00d4ff;
    border-color: #00d4ff;
}

.btn-secondary:hover {
    background: #00d4ff;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    transform: translateY(-3px);
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
    }
    to {
        text-shadow: 0 0 30px rgba(0, 212, 255, 1), 0 0 40px rgba(0, 212, 255, 0.8);
    }
}

/* Section Styles */
.section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4ff;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Games Section */
.games {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.game-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

.game-image {
    height: 200px;
    background: linear-gradient(45deg, #333, #555);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.game-placeholder {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.2rem;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

.game-status {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.game-status.coming-soon {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #000;
}

.game-status.available {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
    color: #000;
}

.game-info {
    padding: 2rem;
}

.game-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.game-info p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.game-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(0, 212, 255, 0.1);
    color: #00d4ff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

/* About Section */
.about {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ccc;
}

.about-text h3 {
    font-size: 1.8rem;
    color: #00d4ff;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.about-image {
    height: 300px;
    background: linear-gradient(45deg, #333, #555);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #444;
}

.about-placeholder {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.5rem;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

.stats {
    display: flex;
    gap: 3rem;
    justify-content: space-around;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00d4ff;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #ccc;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Features Section */
.features {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 10px;
    transition: transform 0.3s ease;
    border: 1px solid #333;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    color: #00d4ff;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.feature-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Items Page Styles */
.items-header,
.privacy-header,
.terms-header {
    padding: 8rem 0 3rem;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.page-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    color: #00d4ff;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.8);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 1rem;
}

.last-updated {
    font-size: 0.9rem;
    color: #888;
}

.items-categories {
    padding: 2rem 0;
    background: rgba(26, 26, 26, 0.5);
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: #ccc;
    border: 1px solid #555;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    background: #00d4ff;
    color: #000;
    border-color: #00d4ff;
}

.items-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.item-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333;
}

.item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.2);
}

.item-image {
    height: 150px;
    background: linear-gradient(45deg, #333, #555);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.item-placeholder {
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1rem;
    color: #00d4ff;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.8);
}

.item-rarity {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.item-rarity.legendary {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #000;
}

.item-rarity.epic {
    background: linear-gradient(45deg, #a855f7, #7c3aed);
    color: #fff;
}

.item-rarity.rare {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: #fff;
}

.item-rarity.common {
    background: linear-gradient(45deg, #6b7280, #4b5563);
    color: #fff;
}

.item-info {
    padding: 1.5rem;
}

.item-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.item-info p {
    color: #ccc;
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

.item-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-label {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 0.2rem;
}

.stat-value {
    font-weight: 600;
    color: #00d4ff;
}

.item-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #00d4ff;
}

/* Privacy & Terms Page Styles */
.privacy-content,
.terms-content {
    padding: 3rem 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.privacy-text,
.terms-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.privacy-text h2,
.terms-text h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    color: #00d4ff;
    margin: 2rem 0 1rem;
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.3);
}

.privacy-text h3,
.terms-text h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    color: #00d4ff;
    margin: 1.5rem 0 1rem;
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.3);
}

.privacy-text h4,
.terms-text h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.2rem;
    color: #00d4ff;
    margin: 1rem 0 0.5rem;
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.3);
}

.privacy-text h5,
.terms-text h5 {
    font-family: 'Orbitron', monospace;
    font-size: 1.1rem;
    color: #00d4ff;
    margin: 1rem 0 0.5rem;
    text-shadow: 0 0 5px rgba(0, 212, 255, 0.3);
}

.privacy-text p,
.terms-text p {
    color: #ccc;
    margin-bottom: 1rem;
}

.privacy-text ul,
.terms-text ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.privacy-text ol,
.terms-text ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.privacy-text li,
.terms-text li {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.privacy-text a,
.terms-text a {
    color: #00d4ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-text a:hover,
.terms-text a:hover {
    color: #ff6b35;
    text-decoration: underline;
}

.privacy-text .highlight,
.terms-text .highlight {
    color: #00d4ff;
    font-weight: 600;
}

.contact-info {
    background: rgba(26, 26, 26, 0.5);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
    border: 1px solid #333;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.privacy-footer,
.terms-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

/* New Privacy Policy Specific Styles */
.data-usage-section {
    background: rgba(26, 26, 26, 0.3);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid #00d4ff;
}

.data-usage-section h5 {
    color: #00d4ff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.data-usage-section p {
    margin-bottom: 0.5rem;
}

.data-usage-section ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.rights-section {
    background: rgba(26, 26, 26, 0.3);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid #ff6b35;
}

.rights-section h4 {
    color: #ff6b35;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.rights-section p {
    margin-bottom: 0.5rem;
}

.rights-section ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

.info-category {
    background: rgba(26, 26, 26, 0.3);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid #00d4ff;
}

.info-category h4 {
    color: #00d4ff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.info-category p {
    margin-bottom: 0.5rem;
}

.info-category p:first-of-type {
    font-style: italic;
    color: #aaa;
}

.info-category p strong {
    color: #00d4ff;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #0a0a0a;
    padding: 3rem 0 1rem;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #00d4ff;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #00d4ff;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    padding: 0.5rem 1rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 5px;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-link:hover {
    background: rgba(0, 212, 255, 0.2);
}

.social-link i {
    font-size: 1.2rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 200px;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .stats {
        justify-content: center;
    }

    .games-grid,
    .items-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .category-filters {
        flex-direction: column;
        align-items: center;
    }

    .filter-btn {
        width: 200px;
    }

    .item-price {
        flex-direction: column;
        gap: 1rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .privacy-text,
    .terms-text {
        padding: 0 1rem;
    }

    .privacy-text h2,
    .terms-text h2 {
        font-size: 1.5rem;
    }

    .privacy-text h3,
    .terms-text h3 {
        font-size: 1.3rem;
    }

    .privacy-text h4,
    .terms-text h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .nav-logo h2 {
        font-size: 1.2rem;
    }

    .container {
        padding: 0 15px;
    }

    .items-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .privacy-text,
    .terms-text {
        padding: 0 0.5rem;
    }

    .privacy-text h2,
    .terms-text h2 {
        font-size: 1.3rem;
    }

    .privacy-text h3,
    .terms-text h3 {
        font-size: 1.2rem;
    }

    .privacy-text h4,
    .terms-text h4 {
        font-size: 1rem;
    }
}

/* Item Filter Animation */
.item-card {
    transition: all 0.3s ease;
}

.item-card.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
} 