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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #fff;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 180vh;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(10, 10, 15, 0.95);
    border-bottom: 1px solid var(--primary-border);
    z-index: 100;
}

.nav-left {
    display: flex;
    gap: 30px;
}

.nav-btn {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 0;
    position: relative;
}

.nav-btn:hover {
    color: #fff;
    text-shadow: 0 0 8px var(--primary-glow);
    transform: scale(1.02);
}

.nav-btn.active {
    color: var(--primary-color);
    text-shadow: 0 0 6px var(--primary-glow);
}

.nav-right {
    display: flex;
    align-items: center;
}

.steam-login img {
    height: 35px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.steam-login:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.stats-container {
    position: absolute;
    top: 40vh;
    left: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    z-index: 10;
    max-width: 1000px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.9), rgba(26, 26, 46, 0.9));
    backdrop-filter: blur(20px);
    border: 2px solid var(--primary-border);
    border-radius: 20px;
    padding: 40px 50px;
    text-align: center;
    min-width: 200px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(100, 255, 218, 0.3);
}

.stat-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 4px 20px var(--primary-glow);
    margin-bottom: 10px;
    font-family: 'Courier New', monospace;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.stat-card-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.stat-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 2px 10px var(--primary-glow);
}

.stat-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    line-height: 1.6;
    padding: 0 10px;
}

.features-section {
    position: absolute;
    top: 90vh;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1000px;
    z-index: 10;
    text-align: center;
}

.features-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 4px 20px var(--primary-glow);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 20px;
}

@media (max-width: 1200px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-card {
        min-width: 250px;
    }
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(10, 10, 15, 0.6);
    padding: 8px 15px;
    border-radius: 25px;
    border: 1px solid rgba(100, 255, 218, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.user-profile::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 25px;
    background: linear-gradient(45deg, #64ffda, #82aaff, #c792ea, #64ffda);
    background-size: 300% 300%;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    animation: gradientRotate 3s ease infinite;
}

@keyframes gradientRotate {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.user-profile:hover {
    background: rgba(15, 15, 20, 0.9);
    border-color: rgba(100, 255, 218, 0.6);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 20px rgba(100, 255, 218, 0.3),
        0 0 40px rgba(100, 255, 218, 0.1);
}

.user-profile:hover::before {
    opacity: 0.7;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    object-fit: cover;
    transition: all 0.4s ease;
}

.user-profile:hover .avatar {
    border-color: #82aaff;
    box-shadow: 0 0 20px var(--primary-glow);
    transform: scale(1.1) rotate(5deg);
}

.username {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.logout-btn {
    color: #fff;
    text-decoration: none;
    padding: 6px 15px;
    background: rgba(255, 59, 48, 0.3);
    border-radius: 8px;
    font-size: 13px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 59, 48, 0.5);
    margin-left: 10px;
    position: relative;
    overflow: hidden;
}

.logout-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.logout-btn:hover {
    background: rgba(255, 59, 48, 0.6);
    border-color: rgba(255, 83, 72, 0.8);
    box-shadow: 
        0 4px 15px rgba(255, 59, 48, 0.4),
        0 0 30px rgba(255, 59, 48, 0.2);
    transform: translateY(-2px);
}

.logout-btn:hover::before {
    width: 200px;
    height: 200px;
}

.store-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 100px 20px 50px;
}

.store-content {
    text-align: center;
    max-width: 800px;
}

.store-content h1 {
    font-size: 3rem;
    margin-bottom: 40px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    color: #4fc3f7;
}

.product-card {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.product-card h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
}

.product-card p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    object-fit: cover;
}

.blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 5, 10, 0.9) 0%, rgba(10, 15, 25, 0.95) 100%);
    z-index: -1;
}

.discord-section {
    position: absolute;
    right: 20px;
    bottom: 50px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.discord-join-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 8px 24px rgba(88, 101, 242, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.discord-join-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(88, 101, 242, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
}

.discord-join-btn svg {
    color: white;
}

.discord-widget {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.discord-widget:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 60px rgba(100, 255, 218, 0.3);
}

.discord-widget iframe {
    display: block;
    border-radius: 12px;
}

.player-feed {
    position: fixed;
    right: 20px;
    top: 100px;
    width: 320px;
    max-height: 500px;
    background: rgba(10, 10, 15, 0.92);
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.8);
    z-index: 50;
}

.feed-header {
    display: none;
}

#player-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 400px;
    overflow-y: auto;
}

#player-list::-webkit-scrollbar {
    width: 6px;
}

#player-list::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

#player-list::-webkit-scrollbar-thumb {
    background: rgba(100, 255, 218, 0.3);
    border-radius: 10px;
}

#player-list::-webkit-scrollbar-thumb:hover {
    background: rgba(100, 255, 218, 0.5);
}

.player-notification {
    background: rgba(20, 20, 30, 0.6);
    padding: 14px;
    border-radius: 10px;
    border: 1px solid var(--primary-border);
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.player-notification:hover {
    background: rgba(25, 25, 35, 0.8);
    border-color: var(--primary-color);
    transform: translateX(-5px);
    box-shadow: 
        0 5px 20px var(--primary-glow),
        0 0 30px var(--primary-glow);
}

.player-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.player-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 15px var(--primary-glow);
    object-fit: cover;
}

.player-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.player-name {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.player-status {
    font-size: 13px;
    font-weight: 500;
}

.player-status.connect {
    color: var(--primary-color);
}

.player-status.disconnect {
    color: #ff5370;
}

.admin-container {
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 90px 15px 30px;
}

.admin-content {
    max-width: 1200px;
    width: 100%;
}

.admin-content h1 {
    font-size: 2rem;
    margin-bottom: 15px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), #82aaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.admin-card {
    background: rgba(10, 10, 15, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.admin-card h2 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 8px;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.stat-box {
    background: rgba(20, 20, 30, 0.6);
    border: 1px solid rgba(100, 255, 218, 0.3);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: rgba(100, 255, 218, 0.6);
    box-shadow: 0 5px 20px rgba(100, 255, 218, 0.2);
}

.stat-label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin-bottom: 10px;
}

.stat-value {
    display: block;
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 700;
}

.server-info p {
    color: rgba(255, 255, 255, 0.9);
    margin: 15px 0;
    font-size: 16px;
}

.server-info strong {
    color: var(--primary-color);
}

.status-active {
    color: var(--primary-color);
    font-weight: 600;
}

.webhook-url {
    color: #82aaff;
    font-family: monospace;
    font-size: 13px;
}

.notifications-list {
    max-height: 400px;
    overflow-y: auto;
}

.notification-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(20, 20, 30, 0.6);
    border: 1px solid rgba(100, 255, 218, 0.2);
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.notification-item:hover {
    background: rgba(25, 25, 35, 0.8);
    border-color: rgba(100, 255, 218, 0.4);
    transform: translateX(5px);
}

.notif-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    object-fit: cover;
}

.notif-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.notif-info strong {
    color: #fff;
    font-size: 16px;
}

.notif-action {
    font-size: 13px;
    font-weight: 500;
}

.notif-action.connect {
    color: var(--primary-color);
}

.notif-action.disconnect {
    color: #ff5370;
}

.no-data {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    padding: 20px;
}

:root {
    --primary-color: #64ffda;
    --primary-glow: rgba(100, 255, 218, 0.5);
    --primary-border: rgba(100, 255, 218, 0.2);
}

[data-theme="red"] {
    --primary-color: #ff5370;
    --primary-glow: rgba(255, 83, 112, 0.5);
    --primary-border: rgba(255, 83, 112, 0.2);
}

[data-theme="purple"] {
    --primary-color: #c792ea;
    --primary-glow: rgba(199, 146, 234, 0.5);
    --primary-border: rgba(199, 146, 234, 0.2);
}

[data-theme="green"] {
    --primary-color: #7fdbca;
    --primary-glow: rgba(127, 219, 202, 0.5);
    --primary-border: rgba(127, 219, 202, 0.2);
}

.site-settings {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.setting-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.setting-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 600;
}

.theme-selector {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    
}

.theme-btn {
    padding: 10px 16px;
    background: rgba(20, 20, 30, 0.6);
    border: 1px solid var(--primary-border);
    border-radius: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-btn:hover {
    background: rgba(30, 30, 40, 0.8);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
}

.theme-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.weather-controls {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    
}

.weather-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(20, 20, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.weather-btn:hover {
    background: rgba(30, 30, 40, 0.8);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.weather-btn.active {
    background: rgba(30, 30, 40, 0.9);
    border-color: var(--primary-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.weather-icon {
    font-size: 20px;
}

.weather-status {
    margin-left: auto;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 12px;
}

.rain-container,
.snow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    display: none;
}

.rain-container.active,
.snow-container.active {
    display: block;
}

.rain-drop {
    position: absolute;
    top: -10%;
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(100, 200, 255, 0.6));
    animation: rain-fall linear infinite;
}

@keyframes rain-fall {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(110vh);
        opacity: 0.3;
    }
}

.snow-flake {
    position: absolute;
    top: -10%;
    color: #fff;
    animation: snow-fall linear infinite;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

@keyframes snow-fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(110vh) rotate(360deg);
        opacity: 0.5;
    }
}

.product-form-section,
.products-list-section {
    margin-bottom: 12px;
}

.product-form-section h3,
.products-list-section h3 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="url"],
.form-group textarea {
    background: rgba(20, 20, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px;
    color: #fff;
    font-size: 13px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="url"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-glow);
}

.form-group input[type="file"] {
    background: rgba(20, 20, 30, 0.8);
    border: 1px solid var(--primary-border);
    border-radius: 10px;
    padding: 12px;
    color: #fff;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-group input[type="file"]:hover {
    border-color: var(--primary-color);
    background: rgba(25, 25, 35, 0.9);
    box-shadow: 0 0 15px var(--primary-glow);
}

.form-group input[type="file"]::file-selector-button {
    background: var(--primary-color);
    color: #000;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-weight: 600;
    cursor: pointer;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.form-group input[type="file"]::file-selector-button:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 10px var(--primary-glow);
}

.submit-btn {
    background: var(--primary-color);
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.admin-products-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-product-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(20, 20, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px;
    transition: all 0.3s ease;
}

.admin-product-item:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.admin-product-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(15, 15, 20, 0.6);
    padding: 5px;
}

.admin-product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.admin-product-info strong {
    color: var(--primary-color);
    font-size: 16px;
}

.admin-product-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin: 0;
}

.admin-product-info small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.delete-btn {
    background: rgba(255, 59, 48, 0.3);
    border: 1px solid rgba(255, 59, 48, 0.5);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.delete-btn:hover {
    background: rgba(255, 59, 48, 0.6);
    transform: translateY(-2px);
}

.store-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 120px 40px 50px;
}

.store-content {
    max-width: 1400px;
    width: 100%;
}

.store-content h1 {
    font-size: 3rem;
    margin-bottom: 40px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), #82aaff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: linear-gradient(145deg, rgba(12, 12, 18, 0.95), rgba(8, 8, 12, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.product-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary-color);
    box-shadow: 
        0 12px 35px var(--primary-glow),
        0 0 60px rgba(0, 0, 0, 0.4);
}

.product-logo {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 15, 20, 0.8);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
    margin-bottom: 12px;
}

.product-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.02));
    pointer-events: none;
}

.product-logo img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

.product-name {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 12px 0;
}

.product-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    text-align: center;
    line-height: 1.5;
    margin-bottom: 12px;
}


.features-modal {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.features-modal.show {
    opacity: 1;
}

.features-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.features-modal-content {
    position: relative;
    background: linear-gradient(145deg, rgba(15, 15, 22, 0.98), rgba(10, 10, 15, 0.98));
    border: 1px solid var(--primary-border);
    border-radius: 16px;
    padding: 40px;
    max-width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalSlideIn {
    0% {
        transform: scale(0.8) translateY(50px);
        opacity: 0;
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.close-features {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 59, 48, 0.9);
    border: 1px solid rgba(255, 59, 48, 1);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(255, 59, 48, 0.5);
}

.close-features:hover {
    background: rgba(255, 59, 48, 1);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 59, 48, 0.8);
}

.modal-title {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 12px;
    text-align: center;
    text-shadow: 0 0 20px var(--primary-glow);
}

.modal-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.modal-feature-image {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(20, 20, 30, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
}

.modal-feature-image:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.product-actions {
    display: flex;
    gap: 8px;
    width: 100%;
    align-items: center;
    position: relative;
    z-index: 5;
}

.preview-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.preview-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.buy-btn {
    background: var(--primary-color);
    color: #000;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.buy-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.buy-btn:hover::before {
    width: 300px;
    height: 300px;
}

.buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}

.buy-btn.cart-animation {
    animation: pulse 0.5s ease;
}

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

.flying-cart {
    position: fixed;
    font-size: 40px;
    z-index: 10000;
    pointer-events: none;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 1;
}

.flying-cart.fly {
    transform: translateY(-100vh) translateX(50px) scale(0.3);
    opacity: 0;
}

.image-preview-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-preview-modal.show {
    opacity: 1;
}

.image-preview-modal img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    animation: zoomIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes zoomIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.close-preview {
    position: fixed;
    top: 30px;
    left: 30px;
    background: rgba(255, 59, 48, 0.9);
    border: 1px solid rgba(255, 59, 48, 1);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(255, 59, 48, 0.5);
}

.close-preview:hover {
    background: rgba(255, 59, 48, 1);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 59, 48, 0.8);
}

.loading-text,
.no-products,
.error-text {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    padding: 40px;
    font-size: 18px;
}

@media (max-width: 768px) {
    .player-feed {
        width: calc(100% - 40px);
        max-width: 320px;
    }
    
    .admin-stats {
        grid-template-columns: 1fr;
    }
    
    .theme-selector,
    .weather-controls {
        flex-direction: column;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .store-content h1 {
        font-size: 2rem;
    }
}

/* Admin Grid Layout */
.admin-grid {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 15px;
    align-items: start;
}

/* Action Section */
.action-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.action-section:last-of-type {
    border-bottom: none;
}

.action-section h3 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 12px;
}

.admin-input {
    width: 100%;
    background: rgba(20, 20, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px;
    color: #fff;
    font-size: 13px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.admin-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 8px rgba(100, 255, 218, 0.15);
}

.action-btn {
    width: 100%;
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.kick-btn {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: #fff;
}

.kick-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.ban-btn {
    background: linear-gradient(135deg, #ff5370, #d84a64);
    color: #fff;
}

.ban-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 83, 112, 0.3);
}

.action-result {
    display: none;
    padding: 10px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

.action-result.success {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.5);
    color: #4caf50;
}

.action-result.error {
    background: rgba(255, 83, 112, 0.2);
    border: 1px solid rgba(255, 83, 112, 0.5);
    color: #ff5370;
}

/* Players List */
.player-count {
    display: inline-block;
    background: var(--primary-color);
    color: #000;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    margin-left: 8px;
}

.refresh-btn {
    background: rgba(20, 20, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.refresh-btn:hover {
    background: rgba(30, 30, 40, 0.8);
    border-color: var(--primary-color);
    transform: translateY(-1px);
}

.players-list {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 5px;
}

.players-list::-webkit-scrollbar {
    width: 6px;
}

.players-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.players-list::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.player-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(20, 20, 30, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.player-item:hover {
    background: rgba(30, 30, 40, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateX(3px);
}

.player-info {
    flex: 1;
}

.player-name {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.player-steamid {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    font-family: monospace;
    margin-bottom: 6px;
}

.player-stats {
    display: flex;
    gap: 15px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.player-actions {
    display: flex;
    gap: 6px;
}

.quick-btn {
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kick-quick {
    background: rgba(255, 107, 107, 0.2);
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.kick-quick:hover {
    background: rgba(255, 107, 107, 0.4);
    transform: scale(1.1);
}

.ban-quick {
    background: rgba(255, 83, 112, 0.2);
    border: 1px solid rgba(255, 83, 112, 0.3);
}

.ban-quick:hover {
    background: rgba(255, 83, 112, 0.4);
    transform: scale(1.1);
}

.loading,
.no-players,
.error-message {
    text-align: center;
    padding: 30px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.error-message {
    color: #ff5370;
}

/* Responsive */
@media (max-width: 1024px) {
    .admin-grid {
        grid-template-columns: 1fr;
    }
}

/* Web Settings Grid - Daha İyi Uyumluluk */
.web-settings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.settings-card {
    min-width: 0;
}

.products-card {
    grid-column: 1 / -1;
}

/* Tablet ve Mobil */
@media (max-width: 900px) {
    .web-settings-grid {
        grid-template-columns: 1fr;
    }
    
    .products-card {
        grid-column: 1;
    }
}

/* Form Row Grid */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}
