/* minikitpro - Main Styles */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #F9FAFF;
    background: #0C0D14;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

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

/* Header Styles */
.header {
    background: rgba(33, 34, 51, 1);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo a {
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo h1 {
    color: #6842FF;
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 0 0 20px rgba(104, 66, 255, 0.5);
    margin: 0;
    transition: all 0.3s ease;
}

.logo i {
    margin-right: 0.5rem;
    color: #A48EFF;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #EFF0F7;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
}

.nav-link i {
    font-size: 1rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #6842FF;
    background: rgba(104, 66, 255, 0.15);
    text-shadow: 0 0 10px rgba(104, 66, 255, 0.3);
    transform: translateY(-2px);
}

.nav-link:hover i,
.nav-link.active i {
    opacity: 1;
    color: #A48EFF;
    transform: scale(1.1);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(104, 66, 255, 0.1) 0%, rgba(164, 142, 255, 0.1) 100%);
    border-radius: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
}



.search-box {
    display: flex;
    align-items: center;
    background: rgba(26, 27, 40, 0.8);
    border-radius: 25px;
    padding: 0.5rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.search-box:focus-within {
    border-color: #6842FF;
    box-shadow: 0 0 20px rgba(104, 66, 255, 0.3);
}

.search-box input {
    border: none;
    background: none;
    outline: none;
    padding: 0.5rem;
    width: 200px;
    color: #EFF0F7;
    font-size: 0.9rem;
}

.search-box input::placeholder {
    color: #AAADBE;
}

.search-box button {
    background: none;
    border: none;
    color: #6842FF;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.search-box button:hover {
    color: #A48EFF;
    background: rgba(104, 66, 255, 0.1);
    transform: scale(1.1);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: #6842FF;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(104, 66, 255, 0.1);
    transform: scale(1.1);
}

/* Hero Banner */
.hero-banner {
    position: relative;
    min-height: 80vh;
    margin-top: 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(104, 66, 255, 0.9) 0%,
        rgba(164, 142, 255, 0.8) 30%,
        rgba(255, 107, 157, 0.7) 60%,
        rgba(78, 205, 196, 0.8) 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    background-size: 200px 200px;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(200px, 200px); }
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 80vh;
}

.hero-left {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    0% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.2); }
    100% { box-shadow: 0 0 30px rgba(255, 255, 255, 0.4); }
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: linear-gradient(135deg, #FFE066 0%, #FF6B9D 50%, #C44EFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(30deg); }
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #6842FF 0%, #A48EFF 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(104, 66, 255, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-primary::before, .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before, .btn-secondary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(104, 66, 255, 0.6);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Hero Right Section */
.hero-right {
    position: relative;
}

.game-showcase {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.showcase-header h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.showcase-nav {
    display: flex;
    gap: 0.5rem;
}

.nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: rgba(104, 66, 255, 0.8);
    border-color: #6842FF;
    transform: scale(1.1);
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 600;
}

.feature i {
    color: #FFE066;
    font-size: 1.1rem;
}

.showcase-games {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
    min-height: 300px;
}

.showcase-game {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-game:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.showcase-game img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.showcase-game:hover img {
    transform: scale(1.05);
}

.showcase-game-info {
    padding: 1rem;
}

.showcase-game h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.showcase-game .category {
    color: #A48EFF;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.showcase-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #6842FF;
    transform: scale(1.2);
}

/* Hero Decorations */
.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.decoration {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: float 6s ease-in-out infinite;
}

.decoration-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.decoration-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.decoration-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

/* Hero Games Section */
.hero-games {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 2rem;
}

.featured-game-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    width: 100%;
    max-width: 400px;
}

.hero-game-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-game-card:hover::before {
    opacity: 1;
}

.hero-game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-game-card img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 0.5rem;
}

.hero-game-card h4 {
    color: white;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-10px) rotate(-5deg); }
    75% { transform: translateY(-15px) rotate(3deg); }
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background:
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255, 255, 255, 0.2), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: sparkle 20s linear infinite;
}

@keyframes sparkle {
    0% { transform: translateX(0); }
    100% { transform: translateX(200px); }
}

/* Section Styles */
section {
    padding: 4rem 0;
}

section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #F9FAFF;
    text-shadow: 0 0 20px rgba(104, 66, 255, 0.3);
    font-weight: 900;
    background: linear-gradient(135deg, #F9FAFF 0%, #A48EFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Category Navigation */
.category-nav {
    background: rgba(26, 27, 40, 0.6);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background: linear-gradient(135deg, rgba(26, 27, 40, 0.9) 0%, rgba(33, 34, 51, 0.9) 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(104, 66, 255, 0.1) 0%, rgba(164, 142, 255, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(104, 66, 255, 0.3);
    border-color: #6842FF;
}

.category-card i {
    font-size: 3rem;
    color: #6842FF;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(104, 66, 255, 0.5);
    position: relative;
    z-index: 2;
}

.category-card h3 {
    color: #F9FAFF;
    margin-bottom: 0.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.category-card p {
    color: #BDBFCE;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

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

.game-card {
    background: linear-gradient(135deg, rgba(26, 27, 40, 0.95) 0%, rgba(33, 34, 51, 0.95) 100%);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    position: relative;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(104, 66, 255, 0.05) 0%, rgba(164, 142, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.game-card:hover::before {
    opacity: 1;
}

.game-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(104, 66, 255, 0.3);
    border-color: #6842FF;
}

.game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover img {
    transform: scale(1.05);
}

.game-card-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.game-card h3 {
    color: #F9FAFF;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.game-card p {
    color: #BDBFCE;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.game-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    background: rgba(104, 66, 255, 0.2);
    color: #A48EFF;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(104, 66, 255, 0.3);
    backdrop-filter: blur(5px);
}

.play-btn {
    background: linear-gradient(135deg, #6842FF 0%, #A48EFF 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 15px rgba(104, 66, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.play-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.play-btn:hover::before {
    left: 100%;
}

.play-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(104, 66, 255, 0.5);
}

/* Horizontal Scroll Games */
.games-scroll {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-behavior: smooth;
}

.games-scroll::-webkit-scrollbar {
    height: 8px;
}

.games-scroll::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.games-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.games-scroll .game-card {
    min-width: 280px;
    flex-shrink: 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.scroll-controls {
    display: flex;
    gap: 0.5rem;
}

.scroll-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.scroll-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Masonry Layout */
.games-masonry {
    columns: 3;
    column-gap: 2rem;
}

.games-masonry .game-card {
    break-inside: avoid;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    position: relative;
    color: white;
    margin-top: 4rem;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.footer-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(26, 27, 40, 0.95) 0%,
        rgba(33, 34, 51, 0.95) 50%,
        rgba(104, 66, 255, 0.1) 100%);
    backdrop-filter: blur(20px);
}

.footer-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(104, 66, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(164, 142, 255, 0.05) 0%, transparent 50%);
    background-size: 300px 300px;
}

.footer-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    padding: 4rem 0 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo h3 {
    color: #6842FF;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(104, 66, 255, 0.5);
}

.footer-logo p {
    color: #BDBFCE;
    line-height: 1.6;
    font-size: 1rem;
}

.footer-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(104, 66, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(104, 66, 255, 0.2);
    backdrop-filter: blur(10px);
    min-width: 80px;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: #6842FF;
    text-shadow: 0 0 10px rgba(104, 66, 255, 0.3);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: #BDBFCE;
    margin-top: 0.25rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: #F9FAFF;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #6842FF, #A48EFF);
    border-radius: 2px;
}

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

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column a {
    color: #BDBFCE;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.3rem 0;
    border-radius: 5px;
}

.footer-column a i {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: #6842FF;
    transform: translateX(5px);
}

.footer-column a:hover i {
    opacity: 1;
    color: #A48EFF;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #BDBFCE;
    margin: 0;
}

.footer-bottom .fas.fa-heart {
    color: #FF6B9D;
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(104, 66, 255, 0.1);
    border: 1px solid rgba(104, 66, 255, 0.3);
    border-radius: 50%;
    color: #A48EFF;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(104, 66, 255, 0.8);
    border-color: #6842FF;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(104, 66, 255, 0.4);
}

.footer-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.footer-decoration {
    position: absolute;
    border-radius: 50%;
    background: rgba(104, 66, 255, 0.05);
    animation: float 8s ease-in-out infinite;
}

.footer-decoration-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.footer-decoration-2 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 15%;
    animation-delay: 4s;
}

/* Game Details Page */
.game-details {
    margin-top: 80px;
    padding: 2rem 0;
    min-height: calc(100vh - 80px);
}

.game-details-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #b1afcd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #A48EFF;
}

.breadcrumb span {
    color: #BDBFCE;
}

.game-header {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.game-thumbnail {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.game-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-thumbnail:hover .game-overlay {
    opacity: 1;
}

.game-thumbnail:hover img {
    transform: scale(1.05);
}

.play-game-btn {
    background: linear-gradient(135deg, #6842FF 0%, #A48EFF 100%);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.play-game-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(104, 66, 255, 0.4);
}

.game-meta h1 {
    color: #F9FAFF;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.game-category {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #A48EFF;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.game-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.game-stats .stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #BDBFCE;
    font-size: 0.9rem;
}

.game-stats .stat i {
    color: #6842FF;
}

.game-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.game-description,
.game-instructions,
.game-tags {
    margin-bottom: 3rem;
}

.game-description h3,
.game-instructions h3,
.game-tags h3 {
        width: 100%;
    color: #F9FAFF;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.game-description h3::after,
.game-instructions h3::after,
.game-tags h3::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #6842FF, #A48EFF);
    border-radius: 2px;
}

.game-description p,
.game-instructions p {
    color: #BDBFCE;
    line-height: 1.6;
    font-size: 1rem;
}

.tags-container {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Related Games */
.related-games {
    background: rgba(26, 27, 40, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.related-games h3 {
    color: #F9FAFF;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.related-games-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-game-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.related-game-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(104, 66, 255, 0.2);
    border-color: rgba(104, 66, 255, 0.3);
}

.related-game-card img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-game-card:hover img {
    transform: scale(1.05);
}

.related-game-info {
    padding: 1rem;
}

.related-game-info h4 {
    color: #F9FAFF;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.related-game-category {
    color: #A48EFF;
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
}

.related-play-btn {
    background: linear-gradient(135deg, #6842FF 0%, #A48EFF 100%);
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    width: 100%;
    justify-content: center;
}

.related-play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(104, 66, 255, 0.4);
}

/* Error Message */
.error-message {
    text-align: center;
    padding: 4rem 2rem;
    color: #F9FAFF;
}

.error-icon {
    font-size: 4rem;
    color: #FF6B9D;
    margin-bottom: 1rem;
}

.error-message h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.error-message p {
    color: #BDBFCE;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Notification */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: rgba(26, 27, 40, 0.95);
    backdrop-filter: blur(15px);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(104, 66, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.notification.show {
    transform: translateX(0);
}

.notification i {
    color: #4ECDC4;
}

/* Category Page */
.category-hero {
    position: relative;
    margin-top: 80px;
    padding: 4rem 0;
    overflow: hidden;
}

.category-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.category-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(104, 66, 255, 0.8) 0%,
        rgba(164, 142, 255, 0.6) 50%,
        rgba(78, 205, 196, 0.7) 100%);
}

.category-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    background-size: 250px 250px;
}

.category-hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.category-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.category-info h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.category-info p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.category-stats {
    display: flex;
    gap: 3rem;
}

.category-stats .stat {
    text-align: center;
}

.category-stats .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.category-stats .stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

/* Category Filters */
.category-filters {
    background: rgba(26, 27, 40, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    position: sticky;
    top: 80px;
    z-index: 100;
}

.filters-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-group label {
    color: #BDBFCE;
    font-weight: 600;
    font-size: 0.9rem;
}

.filter-group select {
    background: rgba(104, 66, 255, 0.1);
    border: 1px solid rgba(104, 66, 255, 0.3);
    color: #F9FAFF;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-group select:hover,
.filter-group select:focus {
    background: rgba(104, 66, 255, 0.2);
    border-color: #6842FF;
    outline: none;
}

.view-toggle {
    display: flex;
    background: rgba(104, 66, 255, 0.1);
    border-radius: 25px;
    padding: 0.2rem;
    border: 1px solid rgba(104, 66, 255, 0.3);
}

.view-btn {
    background: none;
    border: none;
    color: #BDBFCE;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.view-btn.active,
.view-btn:hover {
    background: rgba(104, 66, 255, 0.8);
    color: white;
}

/* Category Games */
.category-games {
    padding: 3rem 0;
    min-height: 60vh;
}

.games-container {
    position: relative;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.games-grid.list-view {
    grid-template-columns: 1fr;
    gap: 1rem;
}

.games-grid.list-view .game-card {
    display: flex;
    align-items: center;
    padding: 1rem;
}

.games-grid.list-view .game-card img {
    width: 120px;
    height: 80px;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.games-grid.list-view .game-card-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.games-grid.list-view .game-card-content .play-btn {
    margin-left: 1rem;
    width: auto;
}

.loading-more {
    text-align: center;
    padding: 2rem;
    color: #BDBFCE;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(104, 66, 255, 0.3);
    border-top: 3px solid #6842FF;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

.no-games {
    text-align: center;
    padding: 4rem 2rem;
    color: #F9FAFF;
}

.no-games-icon {
    font-size: 4rem;
    color: #6842FF;
    margin-bottom: 2rem;
}

.no-games h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.no-games p {
    color: #BDBFCE;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination-btn {
    background: rgba(104, 66, 255, 0.1);
    border: 1px solid rgba(104, 66, 255, 0.3);
    color: #A48EFF;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    min-width: 45px;
    text-align: center;
}

.pagination-btn:hover,
.pagination-btn.active {
    background: rgba(104, 66, 255, 0.8);
    color: white;
    transform: translateY(-2px);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Other Categories */
.other-categories {
    background: rgba(26, 27, 40, 0.6);
    backdrop-filter: blur(15px);
    padding: 4rem 0;
    margin-top: 2rem;
}

.other-categories h2 {
    text-align: center;
    color: #F9FAFF;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #F9FAFF 0%, #A48EFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

/* Legal Pages (Privacy & Terms) */
.legal-page {
    margin-top: 80px;
}

.legal-hero {
    position: relative;
    padding: 4rem 0;
    overflow: hidden;
}

.legal-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.legal-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(104, 66, 255, 0.7) 0%,
        rgba(164, 142, 255, 0.5) 50%,
        rgba(78, 205, 196, 0.6) 100%);
}

.legal-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    background-size: 200px 200px;
}

.legal-hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.legal-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.legal-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.legal-info h1 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.legal-info p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.legal-meta {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.legal-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legal-content {
    padding: 4rem 0;
    background: rgba(26, 27, 40, 0.3);
    backdrop-filter: blur(15px);
}

.legal-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.legal-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.legal-nav {
    background: rgba(26, 27, 40, 0.8);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-nav h3 {
    color: #F9FAFF;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.legal-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.legal-nav li {
    margin-bottom: 0.5rem;
}

.legal-nav a {
    color: #BDBFCE;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    display: block;
    transition: color 0.3s ease;
    border-left: 3px solid transparent;
    padding-left: 1rem;
}

.legal-nav a:hover {
    color: #A48EFF;
    border-left-color: #6842FF;
}

.legal-main {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-section h2 {
    color: #F9FAFF;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.legal-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(135deg, #6842FF, #A48EFF);
    border-radius: 2px;
}

.legal-section h3 {
    color: #A48EFF;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
}

.legal-section p {
    color: #BDBFCE;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.legal-section ul {
    color: #BDBFCE;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

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

.legal-section strong {
    color: #F9FAFF;
    font-weight: 600;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(104, 66, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(104, 66, 255, 0.2);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #F9FAFF;
}

.contact-item i {
    color: #6842FF;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    width: 20px;
    flex-shrink: 0;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(104, 66, 255, 0.3);
    text-align: center;
}

.legal-footer p {
    color: #A48EFF;
    font-weight: 600;
    margin-bottom: 2rem;
}

.legal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Search Page Specific Styles */
.search-hero {
    position: relative;
    margin-top: 80px;
    padding: 4rem 0;
    overflow: hidden;
}

.search-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.search-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(104, 66, 255, 0.8) 0%,
        rgba(164, 142, 255, 0.6) 50%,
        rgba(78, 205, 196, 0.7) 100%);
}

.search-hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    background-size: 300px 300px;
}

.search-hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.search-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.search-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.search-info h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.search-info p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.main-search-box {
    display: flex;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    padding: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    max-width: 600px;
}

.main-search-box input {
    flex: 1;
    background: none;
    border: none;
    color: white;
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
    outline: none;
}

.main-search-box input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.main-search-box button {
    background: linear-gradient(135deg, #6842FF 0%, #A48EFF 100%);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.main-search-box button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(104, 66, 255, 0.4);
}

.search-results {
    padding: 3rem 0;
    min-height: 60vh;
}

.search-results-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.search-results-header h2 {
    color: #F9FAFF;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.search-filters {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.search-results-grid mark {
    background: rgba(104, 66, 255, 0.3);
    color: #F9FAFF;
    padding: 0.1rem 0.3rem;
    border-radius: 3px;
}

.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: #F9FAFF;
}

.no-results-icon {
    font-size: 4rem;
    color: #6842FF;
    margin-bottom: 2rem;
}

.no-results h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.no-results p {
    color: #BDBFCE;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.search-suggestions {
    margin-top: 2rem;
}

.search-suggestions h4 {
    color: #A48EFF;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.suggestion-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.suggestion-tag {
    background: rgba(104, 66, 255, 0.2);
    border: 1px solid rgba(104, 66, 255, 0.3);
    color: #A48EFF;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.suggestion-tag:hover {
    background: rgba(104, 66, 255, 0.8);
    color: white;
    transform: translateY(-2px);
}

.search-loading {
    text-align: center;
    padding: 4rem 2rem;
    color: #BDBFCE;
}

.popular-categories {
    background: rgba(26, 27, 40, 0.6);
    backdrop-filter: blur(15px);
    padding: 4rem 0;
    margin-top: 2rem;
}

.popular-categories h2 {
    text-align: center;
    color: #F9FAFF;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #F9FAFF 0%, #A48EFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
