* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: 
        radial-gradient(circle at 20% 80%, rgba(74, 158, 255, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 40% 40%, rgba(255, 69, 0, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 60% 60%, rgba(74, 158, 255, 0.05) 0%, transparent 70%),
        linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 25%, #0f0f0f 50%, #1a1a1a 75%, #0a0a0a 100%);
    background-attachment: fixed;
    color: #ffffff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(74, 158, 255, 0.05) 2px,
            rgba(74, 158, 255, 0.05) 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(138, 43, 226, 0.03) 2px,
            rgba(138, 43, 226, 0.03) 4px
        );
    pointer-events: none;
    z-index: -1;
    animation: grid-move 30s linear infinite;
}

body::after {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(74, 158, 255, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 90% 80%, rgba(138, 43, 226, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 50% 50%, rgba(255, 69, 0, 0.08) 0%, transparent 35%),
        radial-gradient(circle at 30% 70%, rgba(74, 158, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 70% 30%, rgba(138, 43, 226, 0.1) 0%, transparent 40%);
    pointer-events: none;
    z-index: -1;
    animation: float 25s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
    }
    25% { 
        transform: translateY(-15px) rotate(0.5deg) scale(1.02); 
    }
    50% { 
        transform: translateY(-30px) rotate(1deg) scale(1.05); 
    }
    75% { 
        transform: translateY(-15px) rotate(0.5deg) scale(1.02); 
    }
}

@keyframes grid-move {
    0% { 
        transform: translateX(0px) translateY(0px); 
    }
    25% { 
        transform: translateX(-2px) translateY(-2px); 
    }
    50% { 
        transform: translateX(0px) translateY(-4px); 
    }
    75% { 
        transform: translateX(2px) translateY(-2px); 
    }
    100% { 
        transform: translateX(0px) translateY(0px); 
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Floating Particles */
.container::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(2px 2px at 20px 30px, rgba(74, 158, 255, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(138, 43, 226, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 69, 0, 0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(74, 158, 255, 0.2), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(138, 43, 226, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: particles 20s linear infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes particles {
    0% { 
        transform: translateY(0px) translateX(0px); 
    }
    25% { 
        transform: translateY(-100px) translateX(50px); 
    }
    50% { 
        transform: translateY(-200px) translateX(0px); 
    }
    75% { 
        transform: translateY(-300px) translateX(-50px); 
    }
    100% { 
        transform: translateY(-400px) translateX(0px); 
    }
}

/* Header */
.header {
    margin-bottom: 40px;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(30, 30, 30, 0.95) 50%, rgba(20, 20, 20, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(74, 158, 255, 0.3);
    border-radius: 24px;
    padding: 30px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(74, 158, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 158, 255, 0.5), transparent);
}

.header::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(74, 158, 255, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.logo-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.logo {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4a9eff 0%, #8a2be2 50%, #ff6b6b 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 15px;
    text-shadow: 0 0 30px rgba(74, 158, 255, 0.5);
    position: relative;
    margin: 0;
}

.logo::before {
    content: '🎮';
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px rgba(74, 158, 255, 0.6));
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    0% { 
        filter: drop-shadow(0 0 10px rgba(74, 158, 255, 0.6));
        transform: scale(1);
    }
    100% { 
        filter: drop-shadow(0 0 20px rgba(74, 158, 255, 0.8));
        transform: scale(1.05);
    }
}

/* Achievement Badge */
.achievement-badge {
    position: relative;
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
    border: 2px solid rgba(74, 158, 255, 0.3);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 4px 20px rgba(74, 158, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: achievementPulse 3s ease-in-out infinite;
    overflow: hidden;
}

.achievement-text {
    font-size: 0.9rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4a9eff 0%, #8a2be2 50%, #ff6b6b 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(74, 158, 255, 0.8);
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
    animation: textGlow 2s ease-in-out infinite alternate;
}

.achievement-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 158, 255, 0.3), transparent);
    animation: achievementShine 4s ease-in-out infinite;
}

@keyframes achievementPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 
            0 4px 20px rgba(74, 158, 255, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 
            0 8px 30px rgba(74, 158, 255, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
}

@keyframes textGlow {
    0% {
        text-shadow: 0 0 20px rgba(74, 158, 255, 0.8);
    }
    100% {
        text-shadow: 
            0 0 30px rgba(74, 158, 255, 1),
            0 0 40px rgba(138, 43, 226, 0.6),
            0 0 50px rgba(255, 69, 0, 0.4);
    }
}

@keyframes achievementShine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.search-container {
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
}

.search-input {
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(30, 30, 30, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(74, 158, 255, 0.3);
    border-radius: 16px;
    color: #ffffff;
    font-size: 15px;
    width: 320px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.search-input:focus {
    outline: none;
    border-color: #4a9eff;
    box-shadow: 
        0 12px 40px rgba(74, 158, 255, 0.2),
        0 0 0 4px rgba(74, 158, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.search-input:hover {
    border-color: rgba(74, 158, 255, 0.5);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.category-filter {
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(30, 30, 30, 0.9) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(74, 158, 255, 0.3);
    border-radius: 16px;
    color: #ffffff;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    min-width: 200px;
    position: relative;
}

.category-filter:hover {
    border-color: rgba(74, 158, 255, 0.5);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.category-filter:focus {
    outline: none;
    border-color: #4a9eff;
    box-shadow: 
        0 12px 40px rgba(74, 158, 255, 0.2),
        0 0 0 4px rgba(74, 158, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.category-filter option {
    background: #1a1a1a;
    color: #ffffff;
    padding: 10px;
}

/* Benefits Section */
.benefits-section {
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.benefit-card {
    background: rgba(42, 42, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.benefit-card:hover {
    border-color: #4a9eff;
    background: rgba(51, 51, 51, 0.95);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(74, 158, 255, 0.3);
}

.benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4a9eff 0%, #3a8eef 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(74, 158, 255, 0.3);
}

.benefit-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.3;
}

.benefit-content p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

.payment-logos {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.pix-logo {
    background: #32BCAD;
    color: white;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Responsive Benefits */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .benefit-card {
        padding: 20px;
        gap: 15px;
    }
    
    .benefit-icon {
        width: 45px;
        height: 45px;
    }
    
    .benefit-content h3 {
        font-size: 1.2rem;
    }
    
    .benefit-content p {
        font-size: 0.9rem;
    }
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.game-card {
    background: rgba(42, 42, 42, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.game-card:hover {
    border-color: #4a9eff;
    background: rgba(51, 51, 51, 0.95);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(74, 158, 255, 0.3);
}

.game-image {
    width: 100%;
    height: 200px;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #4a9eff;
    position: relative;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.05);
}

.game-info {
    padding: 20px;
}

.game-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.3;
    min-height: 2.6rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.game-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4a9eff;
    margin-bottom: 15px;
}

.buy-button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #4a9eff 0%, #3a8eef 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 158, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.buy-button:hover {
    background: linear-gradient(135deg, #3a8eef 0%, #2a7edf 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 158, 255, 0.4);
}

.buy-button:active {
    transform: translateY(0);
}

/* Free Game Badge */
.free-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff4444;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #888888;
}

.no-results h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.no-results p {
    font-size: 1.1rem;
}

/* Loading Animation */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
    font-size: 1.2rem;
    color: #4a9eff;
}

.loading::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid #4a9eff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        padding: 25px 20px;
        border-radius: 20px;
    }
    
    .header-content {
        flex-direction: column;
        align-items: stretch;
        gap: 25px;
    }
    
    .logo {
        font-size: 1.8rem;
        text-align: center;
        justify-content: center;
    }
    
    .search-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .search-input {
        width: 100%;
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .category-filter {
        width: 100%;
        padding: 14px 20px;
        font-size: 14px;
    }
    
    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 20px 15px;
        border-radius: 16px;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .search-input,
    .category-filter {
        padding: 12px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .game-card {
        max-width: 100%;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #2a2a2a;
}

::-webkit-scrollbar-thumb {
    background: #4a9eff;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3a8eef;
}

/* Trust Section */
.trust-section {
    margin-top: 60px;
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(30, 30, 30, 0.95) 50%, rgba(20, 20, 20, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 158, 255, 0.5), transparent);
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.trust-header {
    margin-bottom: 40px;
}

.trust-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4a9eff 0%, #8a2be2 50%, #ff6b6b 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    text-shadow: 0 0 30px rgba(74, 158, 255, 0.5);
}

.trust-header p {
    font-size: 1.1rem;
    color: #cccccc;
    font-weight: 500;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.trust-badge {
    background: rgba(42, 42, 42, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.trust-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 158, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.trust-badge:hover::before {
    left: 100%;
}

.trust-badge:hover {
    border-color: #4a9eff;
    background: rgba(51, 51, 51, 0.95);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(74, 158, 255, 0.3);
}

.badge-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4a9eff 0%, #3a8eef 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(74, 158, 255, 0.3);
    transition: all 0.3s ease;
}

.trust-badge:hover .badge-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(74, 158, 255, 0.4);
}

.badge-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.badge-text p {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.4;
}

.trust-footer {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(74, 158, 255, 0.2);
}

.trust-footer p {
    font-size: 1.1rem;
    color: #4a9eff;
    font-weight: 600;
    margin-bottom: 20px;
}

.security-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.security-features span {
    background: rgba(74, 158, 255, 0.1);
    border: 1px solid rgba(74, 158, 255, 0.3);
    color: #4a9eff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.security-features span:hover {
    background: rgba(74, 158, 255, 0.2);
    transform: translateY(-2px);
}

/* Responsive Trust Section */
@media (max-width: 768px) {
    .trust-section {
        margin-top: 40px;
        padding: 30px 0;
        border-radius: 20px;
    }
    
    .trust-header h2 {
        font-size: 1.8rem;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .trust-badge {
        padding: 20px;
        gap: 15px;
    }
    
    .badge-icon {
        width: 50px;
        height: 50px;
    }
    
    .security-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* Footer */
.footer {
    margin-top: 40px;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(20, 20, 20, 0.95) 50%, rgba(10, 10, 10, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(74, 158, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 158, 255, 0.5), transparent);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4a9eff 0%, #8a2be2 50%, #ff6b6b 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.footer-brand p {
    color: #cccccc;
    font-size: 1rem;
    font-weight: 500;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-section h4 {
    color: #4a9eff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-section a:hover {
    color: #4a9eff;
    transform: translateX(5px);
}

.footer-section a::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: #4a9eff;
    transition: width 0.3s ease;
}

.footer-section a:hover::before {
    width: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(74, 158, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright p {
    color: #888888;
    font-size: 0.85rem;
    margin-bottom: 5px;
    line-height: 1.4;
}

.footer-social span {
    color: #4a9eff;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-copyright p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 30px 15px 15px;
    }
    
    .footer-brand h3 {
        font-size: 1.5rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
    }
}

/* Cart Floating Button */
.cart-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(30, 30, 30, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(74, 158, 255, 0.3);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    min-width: 300px;
}

.cart-float:hover {
    border-color: #4a9eff;
    box-shadow: 0 15px 50px rgba(74, 158, 255, 0.3);
    transform: translateY(-2px);
}

.cart-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-count {
    background: linear-gradient(135deg, #4a9eff 0%, #3a8eef 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(74, 158, 255, 0.3);
}

.cart-details {
    color: #ffffff;
}

.cart-total {
    font-size: 1.3rem;
    font-weight: 700;
    color: #4a9eff;
    margin-bottom: 2px;
}

.cart-text {
    font-size: 0.85rem;
    color: #cccccc;
}

.checkout-btn {
    background: linear-gradient(135deg, #4a9eff 0%, #3a8eef 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 158, 255, 0.3);
    white-space: nowrap;
}

.checkout-btn:hover {
    background: linear-gradient(135deg, #3a8eef 0%, #2a7edf 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 158, 255, 0.4);
}

/* Cart Modal */
.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(74, 158, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 69, 0, 0.05) 0%, transparent 50%),
        rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(15px);
    animation: backdropFloat 20s ease-in-out infinite;
}

@keyframes backdropFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    33% { 
        transform: translateY(-15px) rotate(0.5deg); 
    }
    66% { 
        transform: translateY(10px) rotate(-0.5deg); 
    }
}

.modal-backdrop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(2px 2px at 20px 30px, rgba(74, 158, 255, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(138, 43, 226, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 69, 0, 0.4), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(74, 158, 255, 0.2), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(138, 43, 226, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: modalParticles 25s linear infinite;
    pointer-events: none;
}

@keyframes modalParticles {
    0% { 
        transform: translateY(0px) translateX(0px); 
    }
    25% { 
        transform: translateY(-100px) translateX(50px); 
    }
    50% { 
        transform: translateY(-200px) translateX(0px); 
    }
    75% { 
        transform: translateY(-300px) translateX(-50px); 
    }
    100% { 
        transform: translateY(-400px) translateX(0px); 
    }
}

.modal-content {
    position: relative;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(30, 30, 30, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(74, 158, 255, 0.3);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow: hidden;
    animation: modalSlideIn 0.4s ease;
}

.modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(74, 158, 255, 0.5), transparent);
    z-index: 1;
}

.modal-content::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(74, 158, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 69, 0, 0.05) 0%, transparent 60%);
    animation: modalFloat 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes modalFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
    }
    25% { 
        transform: translateY(-10px) rotate(0.5deg) scale(1.02); 
    }
    50% { 
        transform: translateY(-20px) rotate(1deg) scale(1.05); 
    }
    75% { 
        transform: translateY(-10px) rotate(0.5deg) scale(1.02); 
    }
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(74, 158, 255, 0.2);
    background: rgba(10, 10, 10, 0.5);
}

.modal-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4a9eff 0%, #8a2be2 50%, #ff6b6b 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.modal-close {
    background: rgba(255, 69, 0, 0.2);
    border: 1px solid rgba(255, 69, 0, 0.3);
    color: #ff4500;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 69, 0, 0.3);
    transform: scale(1.1);
}

.modal-body {
    padding: 25px 30px;
    max-height: 50vh;
    overflow-y: auto;
    position: relative;
    z-index: 2;
}

.modal-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(74, 158, 255, 0.03) 2px,
            rgba(74, 158, 255, 0.03) 4px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(138, 43, 226, 0.02) 2px,
            rgba(138, 43, 226, 0.02) 4px
        );
    pointer-events: none;
    z-index: -1;
    animation: modalGridMove 30s linear infinite;
}

@keyframes modalGridMove {
    0% { 
        transform: translateX(0px) translateY(0px); 
    }
    25% { 
        transform: translateX(-2px) translateY(-2px); 
    }
    50% { 
        transform: translateX(0px) translateY(-4px); 
    }
    75% { 
        transform: translateX(2px) translateY(-2px); 
    }
    100% { 
        transform: translateX(0px) translateY(0px); 
    }
}

.cart-summary-header {
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.1) 0%, rgba(138, 43, 226, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(74, 158, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.cart-summary-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 158, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.cart-summary-header:hover::before {
    left: 100%;
}

.summary-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.games-count {
    color: #cccccc;
    font-size: 0.9rem;
    font-weight: 500;
}

.total-price {
    color: #4a9eff;
    font-size: 1.2rem;
    font-weight: 700;
}

.cart-games-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-game-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: linear-gradient(135deg, rgba(42, 42, 42, 0.8) 0%, rgba(35, 35, 35, 0.8) 100%);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cart-game-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 158, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.cart-game-item:hover::before {
    left: 100%;
}

.cart-game-item:hover {
    border-color: #4a9eff;
    background: linear-gradient(135deg, rgba(51, 51, 51, 0.9) 0%, rgba(45, 45, 45, 0.9) 100%);
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(74, 158, 255, 0.2);
}

.cart-game-name {
    flex: 1;
    font-size: 0.95rem;
    color: #ffffff;
    margin-right: 15px;
    line-height: 1.3;
    font-weight: 500;
}

.cart-game-price {
    font-size: 1rem;
    font-weight: 600;
    color: #4a9eff;
    white-space: nowrap;
    margin-right: 15px;
}

.cart-remove-btn {
    background: rgba(255, 69, 0, 0.2);
    border: 1px solid rgba(255, 69, 0, 0.3);
    color: #ff4500;
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-remove-btn:hover {
    background: rgba(255, 69, 0, 0.3);
    transform: scale(1.1);
}

.modal-footer {
    padding: 25px 30px;
    border-top: 1px solid rgba(74, 158, 255, 0.2);
    background: rgba(10, 10, 10, 0.5);
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.confirm-btn {
    background: linear-gradient(135deg, #4a9eff 0%, #3a8eef 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 15px 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 158, 255, 0.3);
    flex: 1;
    min-width: 150px;
    position: relative;
    overflow: hidden;
}

.confirm-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;
}

.confirm-btn:hover::before {
    left: 100%;
}

.confirm-btn:hover {
    background: linear-gradient(135deg, #3a8eef 0%, #2a7edf 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 158, 255, 0.4);
}

.clear-btn {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.2) 0%, rgba(255, 69, 0, 0.1) 100%);
    border: 1px solid rgba(255, 69, 0, 0.3);
    color: #ff4500;
    border-radius: 12px;
    padding: 15px 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 150px;
    position: relative;
    overflow: hidden;
}

.clear-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 69, 0, 0.2), transparent);
    transition: left 0.5s ease;
}

.clear-btn:hover::before {
    left: 100%;
}

.clear-btn:hover {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.3) 0%, rgba(255, 69, 0, 0.2) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.2);
}

/* Game Card Checkbox */
.game-checkbox {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 24px;
    height: 24px;
    background: rgba(42, 42, 42, 0.9);
    border: 2px solid rgba(74, 158, 255, 0.3);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.game-checkbox:hover {
    border-color: #4a9eff;
    background: rgba(74, 158, 255, 0.1);
}

.game-checkbox.checked {
    background: linear-gradient(135deg, #4a9eff 0%, #3a8eef 100%);
    border-color: #4a9eff;
}

.game-checkbox.checked::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 14px;
}

/* Responsive Cart */
@media (max-width: 768px) {
    .cart-float {
        left: 10px;
        right: 10px;
        bottom: 10px;
        min-width: auto;
        padding: 15px;
        gap: 15px;
    }
    
    .cart-count {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .cart-total {
        font-size: 1.1rem;
    }
    
    .checkout-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    /* Modal responsivo */
    .modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 20px;
        max-height: 45vh;
    }
    
    .modal-footer {
        padding: 20px;
        flex-direction: column;
    }
    
    .confirm-btn,
    .clear-btn {
        min-width: auto;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .cart-game-item {
        padding: 12px;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .cart-game-name {
        font-size: 0.9rem;
        margin-right: 10px;
    }
    
    .cart-game-price {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cart-float {
        left: 5px;
        right: 5px;
        bottom: 5px;
        padding: 12px;
        gap: 12px;
    }
    
    .cart-count {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .cart-total {
        font-size: 1rem;
    }
    
    .cart-text {
        font-size: 0.8rem;
    }
    
    .checkout-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    /* Modal mobile */
    .modal-content {
        width: 98%;
        max-height: 95vh;
        border-radius: 16px;
    }
    
    .modal-header {
        padding: 15px;
    }
    
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .modal-close {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .modal-body {
        padding: 15px;
        max-height: 50vh;
    }
    
    .modal-footer {
        padding: 15px;
    }
    
    .confirm-btn,
    .clear-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
    }
    
    .cart-game-item {
        padding: 10px;
    }
    
    .cart-game-name {
        font-size: 0.85rem;
    }
    
    .cart-game-price {
        font-size: 0.85rem;
    }
    
    .cart-remove-btn {
        min-width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:active {
    transform: scale(0.95);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive WhatsApp Button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float svg {
        width: 22px;
        height: 22px;
    }
}

/* Responsive Achievement Badge */
@media (max-width: 768px) {
    .logo-section {
        text-align: center;
    }
    
    .achievement-badge {
        margin: 0 auto;
        padding: 6px 16px;
    }
    
    .achievement-text {
        font-size: 0.8rem;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 480px) {
    .achievement-badge {
        padding: 5px 12px;
    }
    
    .achievement-text {
        font-size: 0.75rem;
        letter-spacing: 0.3px;
    }
}

/* Purchase Notifications */
.notification-timer {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(to right, #4a9eff, #8a2be2, #ff6b6b);
    animation: timerBar 5s linear forwards;
    z-index: 3;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

@keyframes timerBar {
    from {
        width: 100%;
    }
    to {
        width: 0%;
    }
}

.purchase-notifications {
    position: fixed;
    left: 20px;
    top: 10%;
    transform: translateY(-50%);
    z-index: 1000;
    pointer-events: none;
    max-width: 300px;
}

.purchase-notification {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(30, 30, 30, 0.95) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(74, 158, 255, 0.3);
    border-radius: 15px;
    padding: 15px 20px;
    margin-bottom: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    animation: notificationSlideIn 0.5s ease-out, notificationFadeOut 0.5s ease-in 4.5s forwards;
    position: relative;
    overflow: hidden;
    max-width: 280px;
}

.purchase-notification::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #4a9eff, #8a2be2, #ff6b6b);
    animation: notificationGlow 2s ease-in-out infinite;
}

.purchase-notification::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 158, 255, 0.1), transparent);
    animation: notificationShine 3s ease-in-out infinite;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.notification-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #4a9eff 0%, #8a2be2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: iconPulse 2s ease-in-out infinite;
}

.notification-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.notification-text {
    flex: 1;
}

.notification-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #4a9eff;
    margin-bottom: 2px;
}

.notification-action {
    font-size: 0.85rem;
    color: #ffffff;
    margin-bottom: 2px;
}

.notification-game {
    font-size: 0.8rem;
    color: #8a2be2;
    font-weight: 500;
}

.notification-time {
    font-size: 0.7rem;
    color: #888;
    margin-top: 5px;
    opacity: 0.8;
}

@keyframes notificationSlideIn {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes notificationFadeOut {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-100%);
        opacity: 0;
    }
}

@keyframes notificationGlow {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

@keyframes notificationShine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(74, 158, 255, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(74, 158, 255, 0);
    }
}

/* Responsive Purchase Notifications */
@media (max-width: 768px) {
    .purchase-notifications {
        left: 10px;
        max-width: 250px;
    }
    
    .purchase-notification {
        padding: 12px 15px;
        max-width: 230px;
    }
    
    .notification-icon {
        width: 35px;
        height: 35px;
    }
    
    .notification-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .notification-name {
        font-size: 0.85rem;
    }
    
    .notification-action {
        font-size: 0.8rem;
    }
    
    .notification-game {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .purchase-notifications {
        left: 5px;
        max-width: 200px;
    }
    
    .purchase-notification {
        padding: 10px 12px;
        max-width: 180px;
    }
    
    .notification-content {
        gap: 8px;
    }
    
    .notification-icon {
        width: 30px;
        height: 30px;
    }
    
    .notification-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .notification-name {
        font-size: 0.8rem;
    }
    
    .notification-action {
        font-size: 0.75rem;
    }
    
    .notification-game {
        font-size: 0.7rem;
    }
}