/* TACTYLA Modern Design - 2024 */

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

:root {
    --primary-bg: #1a1a1a;
    --secondary-bg: #2d2d2d;
    --accent-color: #ff7722;
    --accent-hover: #e66612;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --card-bg: linear-gradient(135deg, #2d2d2d, #404040);
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 16px 64px rgba(0, 0, 0, 0.4);
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #000000, #1a1a1a, #2d2d2d);
    background-attachment: fixed;
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
    position: relative;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 119, 34, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 34, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Header Styles */
.header {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ff6b00, #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px #ff6b00;
    letter-spacing: 2px;
}

.user-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.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;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    color: white;
    box-shadow: 0 4px 15px rgba(255, 119, 34, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 119, 34, 0.4);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Main Content */
.main-content {
    margin-top: 80px;
    padding: 0;
    min-height: calc(100vh - 80px);
}

/* Section Styles */
.section {
    padding: 60px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--text-primary);
    position: relative;
}

.section-title::before {
    content: '';
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    border-radius: 2px;
}

.section-title i {
    color: var(--accent-color);
    font-size: 2rem;
}

/* Games Container */
.games-container {
    background: var(--card-bg);
    border-radius: 30px;
    padding: 40px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.games-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.games-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.games-slider::-webkit-scrollbar {
    display: none;
}

.game-item {
    flex: 0 0 200px;
    height: 200px;
    background: transparent;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.game-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.game-item:hover {
    transform: scale(1.1) translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.game-item img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-sizing: border-box;
    z-index: 1;
}

.game-item i {
    background: linear-gradient(135deg, #87CEEB, #4682B4);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
}

/* Content Creators Container */
.creators-container {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.creators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

/* Content Creators Slider */
.creators-container-slider {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    position: relative;
}

.creators-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none;
    scroll-behavior: smooth;
    position: relative;
}

.creators-slider::-webkit-scrollbar {
    display: none;
}

.creator-card-slider {
    flex: 0 0 280px;
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.9), rgba(64, 64, 64, 0.9));
    border-radius: 20px;
    padding: 25px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.creator-card-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-color), #ff4081, #9c27b0);
    background-size: 200% 200%;
    animation: gradient-animation 3s ease infinite;
}

@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.creator-card-slider:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.creator-avatar {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.creator-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.creator-card-slider:hover .creator-avatar img {
    border-color: var(--accent-color);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 119, 34, 0.4);
}

.creator-card-slider .creator-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #87CEEB, #4682B4);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.creator-card-slider .creator-placeholder i {
    font-size: 2rem;
    color: white;
}

.creator-card-slider:hover .creator-placeholder {
    border-color: var(--accent-color);
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 119, 34, 0.4);
}

.creator-card-slider .creator-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.creator-card-slider .creator-description {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 15px;
    font-style: italic;
    opacity: 0.9;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.creator-card-slider .creator-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.creator-card-slider .creator-btn {
    padding: 8px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 35px;
    height: 35px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.creator-card-slider .creator-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.creator-item {
    background: linear-gradient(135deg, #2d2d2d, #404040);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.creator-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--accent-color), #ff4081);
}

.creator-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.creator-item img {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.creator-item:hover img {
    border-color: var(--accent-color);
    transform: scale(1.05);
}

.creator-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    background: linear-gradient(135deg, #87CEEB, #4682B4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.creator-placeholder i {
    font-size: 3rem;
    color: white;
}

.creator-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.creator-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.creator-btn {
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.youtube-btn {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.youtube-btn:hover {
    background: linear-gradient(135deg, #cc0000, #990000);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.4);
}

.kick-btn {
    background: linear-gradient(135deg, #53fc18, #41c914);
    color: white;
    box-shadow: 0 4px 15px rgba(83, 252, 24, 0.3);
}

.kick-btn:hover {
    background: linear-gradient(135deg, #41c914, #359e11);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(83, 252, 24, 0.4);
}

.tiktok-btn {
    background: linear-gradient(135deg, #ff0050, #fe2c55);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 0, 80, 0.3);
}

.tiktok-btn:hover {
    background: linear-gradient(135deg, #fe2c55, #ff0050);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 80, 0.4);
}

.instagram-btn {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: white;
    box-shadow: 0 4px 15px rgba(131, 58, 180, 0.3);
}

.instagram-btn:hover {
    background: linear-gradient(135deg, #fd1d1d, #833ab4, #fcb045);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(131, 58, 180, 0.4);
}

.x-btn {
    background: linear-gradient(135deg, #000000, #333333);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.x-btn:hover {
    background: linear-gradient(135deg, #333333, #000000);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.twitch-btn {
    background: linear-gradient(135deg, #9146ff, #772ce8);
    color: white;
    box-shadow: 0 4px 15px rgba(145, 70, 255, 0.3);
}

.twitch-btn:hover {
    background: linear-gradient(135deg, #772ce8, #9146ff);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(145, 70, 255, 0.4);
}

.creator-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

/* Sponsors Container */
.sponsors-container {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.sponsors-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none;
}

.sponsors-slider::-webkit-scrollbar {
    display: none;
}

.sponsor-item {
    flex: 0 0 250px;
    height: 120px;
    background: transparent;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.sponsor-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.sponsor-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.1);
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 15px;
    z-index: 1;
}

.sponsor-item div {
    background: linear-gradient(135deg, #87CEEB, #4682B4);
    width: 100%;
    height: 100%;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    color: white;
    font-weight: 600;
    text-align: center;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.news-item {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.news-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.news-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, #87CEEB, #4682B4);
}

.news-content {
    padding: 25px;
}

.news-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.news-excerpt {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-date {
    color: var(--accent-color);
    font-size: 0.8rem;
    font-weight: 500;
}

/* News Container */
.news-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* News Placeholder */
.news-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    opacity: 0.8;
}

/* Read More Button */
.read-more {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.read-more span {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.news-item:hover .read-more span {
    color: #ffffff;
    transform: translateX(5px);
}

.read-more i {
    transition: transform 0.3s ease;
}

.news-item:hover .read-more i {
    transform: translateX(3px);
}

/* Footer */
.footer {
    background: var(--primary-bg);
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
    text-align: center;
    margin-top: 60px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    filter: brightness(1.1);
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 119, 34, 0.3);
}

.footer-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Form Styles */
.form-container {
    max-width: 500px;
    margin: 100px auto;
    padding: 40px;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 119, 34, 0.1);
    background: rgba(255, 255, 255, 0.08);
}

/* Error and Success Messages */
.error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #ff6b6b;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #69f0ae;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Admin Panel Styles */
.admin-container {
    display: flex;
    min-height: calc(100vh - 80px);
    margin-top: 80px;
}

.admin-nav {
    width: 250px;
    background: var(--card-bg);
    border-right: 1px solid var(--border-color);
    padding: 30px 0;
}

.admin-nav ul {
    list-style: none;
}

.admin-nav li {
    margin-bottom: 5px;
}

.admin-nav a {
    display: block;
    padding: 15px 30px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.admin-nav a:hover,
.admin-nav a.active {
    background: rgba(255, 119, 34, 0.1);
    color: var(--accent-color);
    border-left-color: var(--accent-color);
}

.admin-content {
    flex: 1;
    padding: 40px;
    background: var(--primary-bg);
}

/* Table Styles */
.table {
    width: 100%;
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.table th,
.table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.table th {
    background: rgba(255, 119, 34, 0.1);
    color: var(--accent-color);
    font-weight: 600;
}

.table img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

/* Additional Button Styles */
.btn-danger {
    background: linear-gradient(135deg, #f44336, #d32f2f);
    color: white;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 67, 54, 0.3);
}

.btn-warning {
    background: linear-gradient(135deg, #ff9800, #f57c00);
    color: white;
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.3);
}

/* Animations */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .creators-container-slider {
        padding: 25px 20px;
    }

    .creator-card-slider {
        flex: 0 0 260px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }
    
    .section {
        padding: 40px 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .game-item {
        flex: 0 0 150px;
        height: 150px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }

    .creators-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .creators-container-slider {
        padding: 20px 15px;
    }

    .creators-slider {
        gap: 15px;
        padding: 15px 0;
    }

    .creator-card-slider {
        flex: 0 0 250px;
        padding: 20px;
    }

    .creator-item {
        padding: 20px;
    }

    .creator-buttons {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .creator-btn {
        width: 100%;
        justify-content: center;
        max-width: 200px;
    }

    .creator-card-slider .creator-buttons {
        gap: 6px;
    }

    .creator-card-slider .creator-btn {
        min-width: 30px;
        height: 30px;
        padding: 6px 10px;
        font-size: 11px;
    }
    
    .admin-container {
        flex-direction: column;
    }
    
    .admin-nav {
        width: 100%;
    }
    
    .form-container {
        margin: 50px 20px;
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .creators-container-slider {
        padding: 15px 10px;
    }

    .creators-slider {
        gap: 12px;
        padding: 10px 0;
    }

    .creator-card-slider {
        flex: 0 0 220px;
        padding: 18px;
    }

    .creator-card-slider .creator-name {
        font-size: 1rem;
    }

    .creator-card-slider .creator-description {
        font-size: 0.8rem;
        height: 35px;
    }
    
    .games-slider,
    .sponsors-slider {
        gap: 15px;
    }
    
    .game-item {
        flex: 0 0 120px;
        height: 120px;
    }
    
    .user-actions {
        gap: 10px;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 12px;
    }
} 