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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #121212;
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

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

/* Navigation */
.navbar {
    background: #0a0a0a;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid #222;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo {
    height: 30px;
    width: auto;
    border-radius: 6px;
}

.nav-brand span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

.nav-socials {
    display: flex;
    gap: 8px;
}

.btn-social {
    padding: 7px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background 0.2s ease;
}

.btn-social.twitch {
    background: #9146FF;
    color: white;
    box-shadow: 0 2px 6px rgba(145, 70, 255, 0.3);
}

.btn-social.twitch:hover {
    background: #772CE8;
    box-shadow: 0 4px 10px rgba(145, 70, 255, 0.4);
}

.btn-social.discord {
    background: #5865F2;
    color: white;
    box-shadow: 0 2px 6px rgba(88, 101, 242, 0.3);
}

.btn-social.discord:hover {
    background: #4752C4;
    box-shadow: 0 4px 10px rgba(88, 101, 242, 0.4);
}

.btn-social.telegram {
    background: #0088CC;
    color: white;
    box-shadow: 0 2px 6px rgba(0, 136, 204, 0.3);
}

.btn-social.telegram:hover {
    background: #006699;
    box-shadow: 0 4px 10px rgba(0, 136, 204, 0.4);
}

/* Hero Section */
.hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: linear-gradient(180deg, #1e1e1e 0%, #121212 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
}

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

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.hero .container {
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: -1px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.hero-description {
    font-size: 1.15rem;
    color: #b0b0b0;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-play {
    background: linear-gradient(135deg, #8a2be2 0%, #a855f7 100%);
    color: white;
    flex: 1;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
    position: relative;
    overflow: hidden;
}

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

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

.btn-play:hover {
    background: linear-gradient(135deg, #7b22c3 0%, #9333ea 100%);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.5);
    transform: translateY(-3px);
}

.btn-featured {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-featured::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.btn-featured:hover {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    box-shadow: 0 6px 25px rgba(245, 158, 11, 0.4);
}

.btn-details {
    background: #333;
    color: #fff;
    flex: 1;
    border: 1px solid #444;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-details:hover {
    background: #444;
    border-color: #555;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
    transform: translateY(-3px);
}

/* Bonuses Section */
.bonuses {
    padding: 20px 0;
    background: #121212;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: -1px;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.bonus-card {
    background: #1e1e1e;
    border-radius: 8px;
    padding: 25px;
    border: 1px solid #333;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.bonus-card:hover {
    border-color: #444;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(-4px);
}

.card-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #666;
    opacity: 0.5;
    z-index: 10;
}

.bonus-tag {
    background: #333;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.casino-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.casino-logo {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
}

.casino-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.3px;
}

.bonus-details {
    margin-bottom: 15px;
}

.bonus-percent {
    font-size: 1.8rem;
    font-weight: 800;
    color: #f59e0b;
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.bonus-max {
    font-size: 0.85rem;
    color: #b0b0b0;
    margin-bottom: 8px;
    font-weight: 500;
}

.bonus-spins {
    font-size: 0.8rem;
    color: #888;
    font-weight: 600;
}

.bonus-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.75rem;
    color: #888;
}

.card-buttons {
    display: flex;
    gap: 10px;
}

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

.footer-content {
    text-align: center;
}

.footer-content p {
    color: #b0b0b0;
    margin-bottom: 15px;
    font-weight: 400;
    font-size: 0.95rem;
}

.footer-warning {
    color: #888;
    font-size: 0.85rem;
    font-weight: 400;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-socials {
        flex-direction: column;
        gap: 8px;
    }

    .btn-social {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

    .bonus-grid {
        grid-template-columns: 1fr;
    }

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

    .card-buttons {
        flex-direction: column;
    }
}

html {
    scroll-behavior: smooth;
}

/* Age Verification Modal */
.age-modal {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.age-modal.hidden {
    display: none;
}

.age-modal-content {
    background: #1e1e1e;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    border: 1px solid #333;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.age-modal-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.age-modal-content p {
    font-size: 1rem;
    color: #b0b0b0;
    margin-bottom: 10px;
    line-height: 1.5;
}

.age-warning {
    color: #d97706 !important;
    font-size: 0.9rem !important;
    margin-bottom: 25px !important;
}

.age-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-confirm {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

.btn-confirm:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
    transform: translateY(-2px);
}

.btn-deny {
    background: #666666;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-deny:hover {
    background: #555555;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* Details Modal */
.details-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.details-modal.active {
    display: flex;
}

.details-modal-content {
    background: #1e1e1e;
    padding: 0;
    border-radius: 16px;
    max-width: 450px;
    width: 90%;
    border: 1px solid #333;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #333;
}

.details-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    color: #888;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #fff;
}

.details-body {
    padding: 25px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #333;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    color: #888;
    font-size: 0.9rem;
    font-weight: 500;
}

.detail-value {
    color: #f59e0b;
    font-size: 0.95rem;
    font-weight: 600;
}

.details-footer {
    padding: 20px 25px;
    border-top: 1px solid #333;
    display: flex;
    justify-content: center;
}

.details-footer .btn {
    width: 100%;
}

/* Admin Modal */
.admin-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.admin-modal.active {
    display: flex;
}

.admin-modal-content {
    background: #1e1e1e;
    padding: 0;
    border-radius: 16px;
    max-width: 400px;
    width: 90%;
    border: 1px solid #333;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.3s ease;
}

.admin-dashboard-content {
    background: #1e1e1e;
    padding: 0;
    border-radius: 16px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    border: 1px solid #333;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.3s ease;
    overflow-y: auto;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #333;
}

.admin-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.admin-body {
    padding: 25px;
}

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

.form-group label {
    display: block;
    color: #888;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    background: #2a2a2a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #9146FF;
}

.admin-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
}

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

.admin-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.casino-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.casino-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #2a2a2a;
    border-radius: 8px;
    border: 1px solid #333;
}

.casino-item-info {
    flex: 1;
}

.casino-item-name {
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.casino-item-details {
    font-size: 0.85rem;
    color: #888;
}

.casino-item-actions {
    display: flex;
    gap: 10px;
}

.btn-delete {
    background: #ef4444;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-delete:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

.btn-edit {
    background: #3b82f6;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 8px;
}

.btn-edit:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.admin-btn {
    background: #9146FF !important;
    color: white !important;
    cursor: pointer;
    border: none;
}

.admin-btn:hover {
    background: #7c3aed !important;
}
