[x-cloak] {
    display: none !important;
}

:root {
    --bg-body: #050505;
    --bg-surface: #0f0f0f;
    --bg-panel: #141414;

    --primary: #ff3e00;
    --primary-dim: rgba(255, 62, 0, 0.2);
    --primary-glow: rgba(255, 62, 0, 0.6);

    --secondary: #00f0ff;
    --secondary-dim: rgba(0, 240, 255, 0.1);

    --text-main: #e0e0e0;
    --text-muted: #808080;
    --text-dark: #000000;

    --border-color: #333333;
    --border-active: #555555;

    --grid-color: rgba(255, 255, 255, 0.03);

    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 0px;

    --header-height: 70px;

    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.5;
    background-image:
        linear-gradient(var(--grid-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-color) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center top;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

ul {
    list-style: none;
}

::-webkit-scrollbar {
    width: 6px;
    background: var(--bg-body);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border: 1px solid var(--bg-body);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

header.header {
    background: rgba(5, 5, 5, 0.95);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    backdrop-filter: blur(5px);
    overflow: visible;
}

header .container {
    height: 100%;
    max-width: 1400px;
    overflow: visible;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 1rem;
    overflow: visible;
    position: relative;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo img.site-logo {
    height: 36px;
    filter: grayscale(100%) brightness(1.5);
    transition: all 0.3s ease;
}

.logo:hover img.site-logo {
    filter: grayscale(0%);
}

.nav-links {
    display: flex;
    gap: 2px;
    align-items: stretch;
    height: 100%;
    overflow: visible;
    position: relative;
}

.nav-item {
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1.5rem;
    position: relative;
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.nav-item i {
    font-size: 1rem;
    color: #444;
    transition: color 0.2s;
}

.nav-item.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: rgba(255, 62, 0, 0.05);
}

.nav-item.active i {
    color: var(--primary);
}

.nav-item:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.02);
    border-bottom-color: var(--primary);
}

.nav-item:hover i {
    color: var(--primary);
}

.dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 1001;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    border-top: 2px solid var(--primary);
    padding: 0;
    min-width: 240px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s cubic-bezier(0, 0, 0.2, 1),
        transform 0.2s cubic-bezier(0, 0, 0.2, 1),
        visibility 0.2s;
    z-index: 9999 !important;
    pointer-events: auto;
}

.dropdown:hover .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.dropdown-item {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #111;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s;
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item.active {
    background: rgba(255, 62, 0, 0.1);
    color: var(--primary);
    border-left: 3px solid var(--primary);
    padding-left: 1.8rem;
}

.dropdown-item:hover {
    background: #111;
    color: var(--primary);
    padding-left: 1.8rem;
}

.dropdown-item i {
    width: 20px;
    text-align: center;
    color: #444;
}

.dropdown-item:hover i {
    color: var(--primary);
}

.auth-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn {
    padding: 0.6rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.btn-login {
    background: transparent;
    color: var(--text-muted);
    border-color: #333;
}

.btn-login:hover {
    color: var(--text-main);
    border-color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

.btn-register {
    background: var(--primary);
    color: var(--text-dark);
    border: 1px solid var(--primary);
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.btn-register:hover {
    background: #ff5722;
    box-shadow: 0 0 15px var(--primary-glow);
    transform: translateY(-1px);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: 1px solid #333;
    color: var(--text-main);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.2s;
}

.mobile-menu-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.user-section {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.coin-balance {
    background: #111;
    border: 1px solid #333;
    padding: 0.4rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-heading);
    transition: all 0.2s;
}

.coin-balance:hover {
    border-color: var(--secondary);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
}

.coin-balance .amount {
    font-weight: 700;
    color: var(--text-main);
    font-size: 1.1rem;
}

.green-arrow {
    color: var(--secondary);
    font-size: 0.8rem;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    position: relative;
    padding-left: 1rem;
    border-left: 1px solid #333;
}

.profile-pic {
    width: 36px;
    height: 36px;
    border: 1px solid #444;
    object-fit: cover;
    border-radius: 2px;
}

.user-profile .username {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-main);
    text-transform: uppercase;
}

.profile-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    border-top: 2px solid var(--secondary);
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s;
    z-index: 100;
}

.user-profile:hover .profile-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.profile-page .section-subtitle {
    margin-top: 0.4rem;
    color: var(--text-muted);
}

.profile-panel {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
}

.profile-tabs {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1.25rem;
}

.profile-tab-btn {
    background: transparent;
    border: 1px solid #333;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    justify-content: center;
}

.profile-tab-btn i {
    font-size: 1rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.profile-tab-btn.active i,
.profile-tab-btn:hover i {
    opacity: 1;
}

.profile-tab-btn.active,
.profile-tab-btn:hover {
    background: linear-gradient(135deg, var(--primary), #ff5722);
    border-color: var(--primary);
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 62, 0, 0.3);
    transform: translateY(-2px);
}

.profile-tab-content {
    padding: 1.5rem 0;
}

.profile-tab-title {
    font-family: var(--font-heading);
    text-transform: uppercase;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.profile-save-btn {
    margin-top: 0.5rem;
}

.sponsor-card {
    background: linear-gradient(135deg, rgba(255, 62, 0, 0.05) 0%, rgba(0, 0, 0, 0.4) 100%);
    border: 1px solid rgba(255, 62, 0, 0.15);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.profile-sponsor-card {
    padding: 1rem 0.8rem;
    gap: 0.75rem;
    border-radius: 12px;
}

.sponsor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top center, rgba(255, 62, 0, 0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.sponsor-card:hover {
    border-color: rgba(255, 62, 0, 0.4);
    transform: translateY(-5px);
    box-shadow:
        0 8px 25px rgba(255, 62, 0, 0.2),
        0 0 40px rgba(255, 62, 0, 0.1);
}

.sponsor-card:hover::before {
    opacity: 1;
}

.sponsor-card-logo {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 62, 0, 0.2);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.profile-sponsor-card .sponsor-card-logo {
    height: 75px;
    padding: 0.7rem;
    border-radius: 10px;
}

.sponsor-card-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: brightness(0.95);
    transition: all 0.3s ease;
}

.sponsor-card:hover .sponsor-card-logo {
    border-color: rgba(255, 62, 0, 0.4);
    box-shadow: 0 0 20px rgba(255, 62, 0, 0.15);
}

.sponsor-card:hover .sponsor-card-logo img {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.sponsor-card-name {
    width: 100%;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    padding: 0.5rem 0;
    border-bottom: 2px solid rgba(255, 62, 0, 0.1);
}

.profile-sponsor-card .sponsor-card-name {
    font-size: 0.9rem;
    padding: 0.4rem 0;
    letter-spacing: 0.3px;
}

.sponsor-input-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sponsor-input-label {
    font-size: 0.8rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    text-align: center;
}

.profile-sponsor-card .sponsor-input-label {
    font-size: 0.7rem;
}

.sponsor-input-wrapper {
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 62, 0, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 0.8rem;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.profile-sponsor-card .sponsor-input-wrapper {
    padding: 0.6rem 0.7rem;
    gap: 0.6rem;
}

.profile-sponsor-card .sponsor-input {
    font-size: 0.85rem;
}

.sponsor-input-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 62, 0, 0.1);
    background: rgba(0, 0, 0, 0.7);
}

.sponsor-input-wrapper i {
    color: var(--primary);
    font-size: 1rem;
    min-width: 20px;
    text-align: center;
}

.sponsor-input {
    flex: 1;
    background: transparent !important;
    border: none !important;
    color: var(--text-main);
    font-size: 0.95rem;
    font-family: var(--font-body);
    outline: none;
}

.sponsor-input::placeholder {
    color: #666;
}

.sponsor-card .sponsor-input:focus {
    outline: none;
}

.profile-save-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    max-width: 400px;
    margin: 2rem auto 0;
    padding: 1rem 2rem;
    font-size: 1rem;
    background: linear-gradient(135deg, var(--primary), #ff5722);
    border: none;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 62, 0, 0.3);
}

.profile-save-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 62, 0, 0.4);
}

.profile-save-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 992px) {
    .sponsor-card-logo {
        height: 80px;
    }

    .profile-sponsor-card .sponsor-card-logo {
        height: 70px;
    }

    .sponsor-card-name {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .sponsor-card {
        padding: 1.2rem;
    }

    .profile-sponsor-card {
        padding: 1rem 0.7rem;
    }

    .sponsor-card-logo {
        height: 70px;
    }

    .profile-sponsor-card .sponsor-card-logo {
        height: 60px;
    }

    .sponsor-card-name {
        font-size: 0.95rem;
    }

    .profile-sponsor-card .sponsor-card-name {
        font-size: 0.85rem;
    }
}

.profile-sponsor-item {
    display: none;
}

.profile-sponsor-head {
    display: none;
}

.profile-sponsor-logo {
    display: none;
}

.crypto-input-wrapper {
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 62, 0, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.crypto-input-wrapper:hover {
    border-color: rgba(255, 62, 0, 0.2);
}

.crypto-input-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 62, 0, 0.1);
}

.input-crypto-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    object-fit: contain;
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.crypto-input {
    padding-left: 52px !important;
    font-family: 'Courier New', monospace;
    font-size: 13px;
    background: transparent !important;
    border: none !important;
}

.crypto-input:focus {
    outline: none;
}

.crypto-icon {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: subtle-pulse 2s ease-in-out infinite;
}

@keyframes subtle-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.9;
    }
}

.form-group label .crypto-icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1100;
}

.modal-container {
    width: 90%;
    max-width: 560px;
}

.blog-modal-content,
.freespin-detail-modal,
.modal-overlay .modal-content {
    background: #0a0a0a;
    border: 1px solid #333;
    color: var(--text-main);
}

.blog-modal-content .modal-image {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.blog-modal-content .modal-title {
    margin-bottom: 0.75rem;
}

.blog-modal-content .modal-text {
    color: #c7c7c7;
    line-height: 1.55;
}

.blog-modal-content .modal-sponsor {
    text-align: center;
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-weight: 600;
    padding: 0.5rem;
    background: rgba(255, 62, 0, 0.1);
    border-radius: 4px;
}

.freespin-detail-modal {
    max-width: 760px;
}

.freespin-detail-modal .detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 0.75rem;
}

.freespin-detail-modal .detail-item {
    border: 1px solid #303030;
    background: #111;
    padding: 0.75rem;
    display: flex;
    gap: 0.65rem;
    align-items: center;
}

.freespin-detail-modal .terms-list {
    margin: 0;
    padding-left: 1.1rem;
    color: #c8c8c8;
}

.freespin-detail-modal .code-container {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.8rem;
}

.freespin-detail-modal .code-input {
    flex: 1;
    background: #111;
    border: 1px solid #333;
    color: #fff;
    padding: 0.8rem;
}

.freespin-detail-modal .copy-btn {
    border: 1px solid #333;
    background: #111;
    color: #fff;
    padding: 0 0.9rem;
    cursor: pointer;
}

.container-xxl {
    padding-top: 2rem;
    padding-bottom: 4rem;
    max-width: 1400px;
}

.slider-container {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-color);
    aspect-ratio: 21/9;
    margin-bottom: 4rem;
    background: #000;
}

.slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, transparent 20%, transparent 80%, rgba(0, 0, 0, 0.8) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, transparent 20%, transparent 80%, rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
    z-index: 2;
}

.slider-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
    z-index: 3;
}

.slider {
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: var(--primary);
    border: 1px solid var(--primary);
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
    font-size: 1.2rem;
}

.slider-arrow:hover {
    background: var(--primary);
    color: black;
}

.slider-arrow.prev {
    left: 0;
    border-left: none;
}

.slider-arrow.next {
    right: 0;
    border-right: none;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    right: 20px;
    left: auto;
    transform: none;
    display: flex;
    gap: 4px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: transparent;
    border: 1px solid #666;
    cursor: pointer;
    transition: all 0.2s;
    transform: skew(-10deg);
}

.dot.active {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 8px var(--primary-glow);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-main);
    letter-spacing: 2px;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid var(--primary);
}

.section-title i {
    color: var(--primary);
    font-size: 1.5rem;
    display: none;
}

.section-subtitle {
    display: none;
}

.quick-link {
    background: var(--bg-surface);
    border: 1px solid #222;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.2s;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.quick-link::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 30px 30px 0;
    border-color: transparent #222 transparent transparent;
    transition: border-color 0.2s;
}

.quick-link:hover::before {
    border-color: transparent var(--primary) transparent transparent;
}

.quick-link:hover {
    border-color: #444;
    background: #141414;
    transform: translateY(-4px);
}

.quick-link i {
    font-size: 2.5rem;
    color: #444;
    transition: all 0.2s;
}

.quick-link:hover i {
    color: var(--text-main);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.link-text h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--text-main);
    letter-spacing: 1px;
}

.link-text span {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
    display: block;
    border-top: 1px solid #222;
    padding-top: 0.5rem;
    width: 100%;
}

.market-link {
    border-color: rgba(255, 62, 0, 0.3);
    background: radial-gradient(circle at top right, rgba(255, 62, 0, 0.05), transparent 50%);
}

.market-link:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(255, 62, 0, 0.1);
}

.market-link i {
    color: var(--primary);
}

.social-section {
    border-top: 1px solid #222;
    padding-top: 4rem;
    margin-top: 4rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.swiper-nav-buttons {
    display: flex;
    gap: 0;
    border: 1px solid #333;
}

.swiper-button-prev,
.swiper-button-next {
    position: static;
    width: 40px;
    height: 40px;
    background: #111;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    margin: 0;
    border: none;
}

.swiper-button-prev {
    border-right: 1px solid #333;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 14px;
    font-weight: bold;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--primary);
    color: black;
}

.social-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background: #0a0a0a;
    border: 1px solid #222;
    transition: all 0.2s;
    height: 100%;
    position: relative;
}

.social-item:hover {
    border-color: #444;
    background: #111;
}

.social-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1.5rem;
    color: #444;
    transition: all 0.2s;
    border: 1px solid #222;
}

.social-item:hover .social-icon {
    color: var(--text-main);
    border-color: var(--text-main);
}

.social-info .social-username {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
    display: block;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-info .social-name {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-family: monospace;
}

.popular-videos-section {
    margin-top: 4rem;
    border-top: 1px solid #222;
    padding-top: 4rem;
}

.popular-videos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 992px) {
    .popular-videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .popular-videos-grid {
        grid-template-columns: 1fr;
    }
}

.video-card {
    position: relative;
    display: block;
    border: 1px solid #222;
    transition: all 0.2s;
    background: #000;
    overflow: hidden;
    text-decoration: none;
}

.video-card:hover {
    border-color: var(--primary);
    transform: scale(1.02);
    z-index: 10;
}

.video-frame {
    position: relative;
    padding-top: 56.25%;
    background: #000;
    overflow: hidden;
}

.video-frame img,
.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}
.video-frame img { object-fit: cover; }

.video-overlay-static {
    position: relative;
    transform: none;
    padding: 0.75rem 1rem;
}
.video-card:hover .video-overlay-static { transform: none; }

.video-frame.video-frame-link {
    padding-top: 0;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.9);
    border-top: 1px solid var(--primary);
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.video-card:hover .video-overlay {
    transform: translateY(0);
}

.video-title {
    color: var(--text-main);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    margin: 0;
}

footer.footer {
    background: #000;
    border-top: 2px solid var(--primary);
    padding: 4rem 0 2rem;
    margin-top: 6rem;
    position: relative;
}

footer.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#222 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.2;
    pointer-events: none;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-logo img {
    height: 40px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s;
}

.footer-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.powered-by {
    font-size: 0.8rem;
    color: #444;
    margin-top: 0.5rem;
    font-family: monospace;
    text-transform: uppercase;
}

.powered-by strong {
    color: #666;
}

.copyright {
    color: #444;
    font-size: 0.8rem;
    font-family: monospace;
}

.footer-visitor {
    background: #111;
    padding: 0.5rem 1rem;
    border: 1px solid #222;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-family: monospace;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.footer-icon {
    color: #444;
    font-size: 1.2rem;
    transition: all 0.2s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #222;
}

.footer-icon:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: #111;
}

@media (max-width: 992px) {
    .nav-links {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: #050505;
        border-bottom: 2px solid var(--primary);
        flex-direction: column;
        padding: 0;
        height: auto;
        gap: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-item {
        width: 100%;
        padding: 1.5rem;
        border-bottom: 1px solid #111;
        justify-content: flex-start;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: #0a0a0a;
        box-shadow: none;
        border: none;
        display: none;
        border-left: 2px solid #222;
        margin-left: 1rem;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .mobile-menu-btn {
        display: block;
    }

    .header-right {
        margin-left: auto;
        margin-right: 1rem;
    }

    .auth-buttons {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 60px;
    }

    .slider-container {
        aspect-ratio: 16/9;
        margin-bottom: 2rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .swiper-nav-buttons {
        align-self: flex-end;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .quick-link {
        padding: 1.5rem;
    }

    .user-section {
        gap: 0.5rem;
    }

    .coin-balance .amount {
        display: none;
    }

    .user-profile .username {
        display: none;
    }

    .user-profile {
        border-left: none;
        padding-left: 0;
    }
}

.modal {
    display: flex;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.2s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: #0a0a0a;
    border: 1px solid #333;
    padding: 3rem;
    width: 90%;
    max-width: 480px;
    position: relative;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    background-image:
        linear-gradient(45deg, #333 25%, transparent 25%, transparent 75%, #333 75%, #333),
        linear-gradient(45deg, #333 25%, transparent 25%, transparent 75%, #333 75%, #333);
    background-position: 0 0, 100% 100%;
    background-size: 20px 20px;
    background-repeat: no-repeat;
    border-top: 2px solid var(--primary);
}

.modal h2 {
    color: var(--text-main);
    text-align: center;
    margin-bottom: 2rem;
    font-family: var(--font-heading);
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding-bottom: 1rem;
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid #222;
}

.coin-converter-modal {
    max-width: 600px !important;
}

.yp-converter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 62, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    border-bottom: 1px solid rgba(255, 62, 0, 0.2);
    margin: -3rem -3rem 0 -3rem;
    border-radius: 0;
}

.yp-converter-header .header-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), #ff5722);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 62, 0, 0.3);
}

.yp-converter-header h3 {
    flex: 1;
    margin: 0 1rem;
    color: var(--primary);
    font-size: 1.5rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.balance-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.balance-card {
    background: linear-gradient(135deg, rgba(255, 62, 0, 0.05) 0%, rgba(0, 0, 0, 0.4) 100%);
    border: 1px solid rgba(255, 62, 0, 0.15);
    border-radius: 12px;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.balance-card:hover {
    border-color: rgba(255, 62, 0, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 62, 0, 0.15);
}

.balance-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(255, 62, 0, 0.2);
}

.balance-card-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.balance-card-icon i {
    font-size: 1.5rem;
}

.yp-card .balance-card-icon i {
    color: var(--primary);
}

.game-card .balance-card-icon i {
    color: #4ade80;
}

.youtube-card .balance-card-icon i {
    color: #FF0000;
}

.balance-card-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.balance-card-label {
    font-size: 0.75rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.balance-card-amount {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    font-family: var(--font-heading);
}

.conversion-type-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.type-tab {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 62, 0, 0.1);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: #999;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.type-tab:hover {
    border-color: rgba(255, 62, 0, 0.3);
    color: var(--text-main);
}

.type-tab.active {
    background: linear-gradient(135deg, rgba(255, 62, 0, 0.2), rgba(255, 62, 0, 0.1));
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 0 20px rgba(255, 62, 0, 0.2);
}

.type-tab i {
    font-size: 1.2rem;
}

.converter-box {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 62, 0, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.converter-input-group,
.converter-output-group {
    margin-bottom: 1rem;
}

.converter-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.converter-input-wrapper {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 62, 0, 0.2);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.converter-input-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 62, 0, 0.1);
}

.converter-coin-icon,
.output-coin-icon {
    font-size: 1.5rem;
    color: var(--primary);
}
.converter-coin-icon img,
.output-coin-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.converter-yt-icon {
    font-size: 1.8rem;
    color: #FF0000;
}

.converter-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    outline: none;
}

.converter-unit {
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
}

.converter-arrow-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.converter-arrow {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), #ff5722);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.3rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 62, 0, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.converter-rate {
    background: rgba(255, 62, 0, 0.1);
    border: 1px solid rgba(255, 62, 0, 0.2);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.converter-output {
    background: linear-gradient(135deg, rgba(255, 62, 0, 0.1), rgba(0, 0, 0, 0.5));
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 0 30px rgba(255, 62, 0, 0.2);
}

.output-icon-wrapper {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

.output-icon-wrapper i {
    font-size: 1.5rem;
    color: #4ade80;
}

.output-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

.output-unit {
    font-size: 0.9rem;
    color: #999;
    text-transform: uppercase;
    font-weight: 600;
}

.converter-info {
    background: rgba(255, 62, 0, 0.05);
    border-left: 3px solid var(--primary);
    border-radius: 6px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.converter-info i {
    color: var(--primary);
    font-size: 1.2rem;
}

.converter-info span {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

.converter-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), #ff5722);
    border: none;
    border-radius: 10px;
    padding: 1.2rem;
    color: #000;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 62, 0, 0.3);
}

.converter-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 62, 0, 0.4);
}

.converter-submit-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .balance-cards-grid {
        grid-template-columns: 1fr;
    }

    .conversion-type-tabs {
        grid-template-columns: 1fr;
    }

    .coin-converter-modal {
        max-width: 95% !important;
    }

    .yp-converter-header {
        margin: -3rem -1.5rem 0 -1.5rem;
    }
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    font-family: monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #111;
    border: 1px solid #333;
    transition: all 0.2s;
}

.input-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary-dim);
}

.input-icon {
    padding: 0 1rem;
    color: #666;
    font-size: 1rem;
}

.form-group input {
    width: 100%;
    padding: 1rem 1rem 1rem 0;
    background: transparent;
    border: none;
    border: 1px solid #555555;
    text-indent: 16px;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
}

.form-group.has-error .input-wrapper {
    border-color: #ff0055;
    box-shadow: 0 0 10px rgba(255, 0, 85, 0.2);
}

.form-group.has-error .input-icon {
    color: #ff0055;
}

.error-msg {
    color: #ff0055;
    font-size: 0.75rem;
    font-family: monospace;
    margin-top: 0.4rem;
    display: block;
    text-transform: uppercase;
}

.info-text {
    margin: 0 0 0.6rem;
    padding: 0.7rem 0.9rem;
    border: 1px solid rgba(0, 255, 255, 0.35);
    border-left: 3px solid var(--primary);
    background: linear-gradient(90deg, rgba(0, 255, 255, 0.08), rgba(10, 10, 10, 0.95));
    color: #bffcff;
    font-family: monospace;
    font-size: 0.78rem;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    line-height: 1.45;
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.1);
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row .form-group {
    flex: 1;
}

.email-group {
    display: flex;
    gap: 0.5rem;
}

.send-code-btn {
    background: #222;
    border: 1px solid #333;
    color: var(--text-main);
    padding: 0 1rem;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 700;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.send-code-btn:hover {
    background: var(--primary);
    color: black;
    border-color: var(--primary);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: black;
    border: none;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 1rem;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.submit-btn:disabled {
    background: #333;
    color: #666;
    cursor: not-allowed;
}

.submit-btn:hover:not(:disabled) {
    background: #fff;
    color: #000;
    box-shadow: 0 0 20px var(--primary-glow);
}

.forgot-password {
    text-align: right;
    margin-top: -1rem;
    margin-bottom: 1.5rem;
}

.forgot-password a {
    color: #666;
    font-size: 0.8rem;
    font-family: monospace;
    cursor: pointer;
    transition: color 0.2s;
}

.forgot-password a:hover {
    color: var(--primary);
}

.register-link {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #222;
}

.register-link span {
    color: #666;
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.register-link a {
    color: var(--secondary);
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.register-link a:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--secondary-dim);
}

.bonus-text {
    margin-top: 1.5rem;
    text-align: center;
    color: #00ff88;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
        text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    }

    100% {
        opacity: 0.8;
    }
}

.close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #444;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.2s;
    line-height: 0.5;
    z-index: 10;
}

.close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.sponsors-banner {
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
    filter: grayscale(20%);
    transition: all 0.3s;
}

.sponsors-banner:hover {
    filter: grayscale(0%);
    border-color: var(--primary);
}

.marquee {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    margin-bottom: 3rem;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: flex;
    gap: 3rem;
    animation: marquee 30s linear infinite;
}

.marquee-item img {
    height: 40px;
    filter: grayscale(100%) brightness(0.8);
    transition: all 0.3s;
    opacity: 0.7;
}

.marquee-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.category-title-wrapper {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.category-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.category-title i {
    color: var(--primary);
}

.sponsor-card {
    background: linear-gradient(135deg, rgba(255, 62, 0, 0.03) 0%, rgba(0, 0, 0, 0.3) 100%);
    border: 1px solid rgba(255, 62, 0, 0.15);
    border-radius: 16px;
    padding: 1.8rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.sponsor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 62, 0, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.sponsor-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 8px 30px rgba(255, 62, 0, 0.2),
        0 0 40px rgba(255, 62, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(255, 62, 0, 0.08) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 10;
}

.sponsor-card:hover::before {
    opacity: 1;
}

.sponsor-logo {
    width: 100%;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 12px;
    border: 1px solid rgba(255, 62, 0, 0.1);
    transition: all 0.3s ease;
}

.sponsor-card:hover .sponsor-logo {
    background: rgba(255, 62, 0, 0.05);
    border-color: rgba(255, 62, 0, 0.3);
    box-shadow: 0 0 20px rgba(255, 62, 0, 0.1);
}

.sponsor-logo img {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.sponsor-card:hover .sponsor-logo img {
    transform: scale(1.05);
}

.sponsor-bonus {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.bonus-text {
    font-size: 0.95rem;
    color: #e0e0e0;
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.bonus-desc {
    padding: 0 10px 8px;
    color: #9fb0d2 !important;
    font-size: 12px !important;
    line-height: 1.5;
    opacity: 0.8;
}

.site-button:not([disabled]) {
    cursor: pointer !important;
}

.site-button {
    background: linear-gradient(135deg, rgba(255, 62, 0, 0.1) 0%, rgba(255, 62, 0, 0.05) 100%);
    border: 1px solid rgba(255, 62, 0, 0.3);
    color: var(--primary);
    padding: 0.75rem 1.25rem;
    width: 100%;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.site-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.site-button:hover::before {
    left: 100%;
}

.site-button:hover {
    background: linear-gradient(135deg, var(--primary) 0%, #ff5722 100%);
    color: #000;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow:
        0 4px 20px rgba(255, 62, 0, 0.4),
        0 0 30px rgba(255, 62, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.site-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(255, 62, 0, 0.3);
}

.freespin-header {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: radial-gradient(circle at center, rgba(255, 62, 0, 0.05), transparent 70%);
}

.header-content h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.header-content h1 i {
    color: var(--primary);
}

.header-content p {
    color: var(--text-muted);
    font-family: monospace;
}

.no-freespins,
.no-events {
    background: #0a0a0a;
    border: 1px dashed var(--border-color);
    padding: 4rem;
    text-align: center;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.no-freespins i,
.no-events i {
    font-size: 3rem;
    opacity: 0.3;
}

.no-freespins p,
.no-events p {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
}

.freespin-card .sponsor-logo {
    height: 80px;
    padding: 0.75rem;
}

.freespin-card .sponsor-logo img {
    max-height: 100%;
    object-fit: contain;
}

.freespin-info {
    padding: 0.5rem 0.75rem;
}

.freespin-site-code {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    padding: 0.5rem 0.6rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    margin-bottom: 0.6rem;
}

.freespin-site-code .site-name {
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80px;
}

.freespin-site-code .separator {
    color: var(--text-muted);
    font-weight: 300;
    font-size: 0.8rem;
}

.freespin-site-code .code-value {
    color: var(--primary-color);
    font-family: 'Courier New', monospace;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.3px;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.copy-code-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    padding: 0.3rem 0.5rem;
    cursor: pointer;
    border-radius: 3px;
    transition: all 0.2s ease;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.copy-code-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.copy-code-btn.copied {
    background: #28a745;
    border-color: #28a745;
    color: #fff;
}

.freespin-note {
    color: var(--text-muted);
    font-size: 0.75rem;
    line-height: 1.4;
    padding: 0.4rem 0.6rem;
    background: rgba(0, 0, 0, 0.2);
    border-left: 2px solid var(--primary-color);
    border-radius: 3px;
    max-height: 60px;
    overflow-y: auto;
}

.freespin-action {
    padding: 0 0.75rem 0.75rem;
}

.site-login-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.site-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 62, 0, 0.4);
}

.site-login-btn i {
    margin-right: 0.4rem;
    font-size: 0.75rem;
}

.event-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event-card .sponsor-logo {
    height: 80px;
    padding: 0.75rem;
    min-height: 80px;
    background: rgba(0, 0, 0, 0.3);
}

.event-card .sponsor-logo img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.event-info {
    padding: 0.5rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.event-site-name {
    color: var(--text-main);
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
    padding: 0.4rem 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.event-detail {
    color: var(--text-muted);
    font-size: 0.75rem;
    line-height: 1.4;
}

.event-detail strong {
    display: block;
    color: var(--text-main);
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.event-detail p {
    margin: 0;
    color: var(--text-muted);
}

.event-action {
    padding: 0 0.75rem 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.event-join-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #fff;
    padding: 0.6rem 0.75rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.8rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.event-join-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
}

.event-join-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.event-join-btn.joined {
    background: linear-gradient(135deg, #6c757d, #5a6268);
    cursor: default;
}

.event-join-btn i {
    margin-right: 0.4rem;
    font-size: 0.75rem;
}

.event-site-btn {
    font-size: 0.75rem !important;
    padding: 0.5rem 0.75rem !important;
}

.modal-sponsor {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.event-past {
    opacity: 0.6;
    filter: grayscale(50%);
}

.event-past:hover {
    opacity: 0.8;
}

.participation-card {
    position: relative;
}

.winner-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    padding: 0.4rem 0.7rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.5);
    animation: pulse 2s infinite;
}

.winner-badge i {
    margin-right: 0.3rem;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@media (max-width: 991px) {
    .freespin-site-code .site-name {
        max-width: 120px;
    }
}

@media (max-width: 575px) {
    .freespin-site-code {
        flex-direction: column;
        align-items: flex-start;
    }

    .freespin-site-code .site-name,
    .freespin-site-code .code-value {
        max-width: 100%;
    }

    .copy-code-btn {
        align-self: flex-end;
        margin-left: 0;
    }
}

.tickets-section {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 2rem;
}

.login-required-section {
    text-align: center;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #222;
}

.login-required-section i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.login-required-section h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.login-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-transform: uppercase;
    color: var(--text-main);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: #666;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-close:hover {
    color: var(--primary);
}

.purchase-details {
    background: #000;
    border: 1px solid #222;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.purchase-details>div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    border-bottom: 1px solid #111;
    padding-bottom: 0.5rem;
}

.purchase-details>div:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    background: #222;
    border: none;
    color: var(--text-main);
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.quantity-btn:hover {
    background: var(--primary);
    color: #000;
}

.quantity-control input {
    background: #000;
    border: 1px solid #333;
    color: var(--text-main);
    width: 50px;
    text-align: center;
    padding: 0.2rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
}

.cancel-btn {
    flex: 1;
    padding: 0.8rem;
    background: transparent;
    border: 1px solid #333;
    color: var(--text-muted);
    font-family: var(--font-heading);
    text-transform: uppercase;
    cursor: pointer;
}

.cancel-btn:hover {
    border-color: var(--text-main);
    color: var(--text-main);
}

.confirm-btn {
    flex: 1;
    padding: 0.8rem;
    background: var(--primary);
    border: none;
    color: #000;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

.confirm-btn:hover {
    background: #fff;
}

.main-content {
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.tasks-header {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 2rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tasks-header .header-content {
    text-align: center;
}

.tasks-header h1 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.tasks-header h1 i {
    color: var(--primary-color);
}

.tasks-header p {
    color: var(--text-muted);
    font-family: monospace;
    margin: 0;
}

.login-alert {
    border: 1px solid rgba(0, 240, 255, 0.35);
    border-left: 3px solid var(--secondary);
    background: rgba(0, 240, 255, 0.08);
    color: #c8fbff;
    padding: 0.95rem 1rem;
}

.tasks-grid {
    background: #0c0c0c;
    border: 1px solid #2d2d2d;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.no-tasks {
    text-align: center;
    color: var(--text-muted);
    padding: 3rem;
    background: #0a0a0a;
    border: 1px dashed var(--border-color);
}

.no-tasks i {
    font-size: 2.6rem;
    color: var(--primary);
    opacity: 0.8;
    margin-bottom: 0.55rem;
}

.no-tasks p {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.task-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.task-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 62, 0, 0.2);
}

.task-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: #fff;
    flex-shrink: 0;
}

.task-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.task-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--text-main);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.task-description {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.task-reward {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 62, 0, 0.1);
    border: 1px solid var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.95rem;
    align-self: flex-start;
}

.task-reward i {
    font-size: 0.9rem;
}

.task-action {
    margin-top: 0;
}

.task-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    padding: 0.875rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.task-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 62, 0, 0.5);
}

.task-btn i {
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.news-title {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.6rem;
}

.blog-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid #2d2d2d;
}

.blog-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.blog-title {
    font-size: 1.05rem;
    font-family: var(--font-heading);
    margin: 0;
}

.blog-excerpt {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.read-more {
    display: inline-block;
    align-self: flex-start;
    border: 1px solid #333;
    padding: 0.45rem 0.8rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.read-more:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #000;
}

.leaderboard-title {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}

.leaderboard-subtitle {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.mobile-user-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: #0d0d0d;
    border: 1px solid #262626;
    padding: 0.8rem 0.95rem;
}

.mobile-section {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    min-width: 110px;
}

.mobile-rank {
    font-family: var(--font-heading);
    font-weight: 700;
    min-width: 34px;
    color: var(--text-main);
}

.mobile-avatar img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #343434;
    object-fit: cover;
}

.mobile-user-info {
    flex: 1;
}

.mobile-username {
    font-family: var(--font-heading);
    letter-spacing: 0.4px;
}

.mobile-balance {
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.92rem;
}

.crown-icon {
    color: #ffc84a;
}

.mobile-user-card.top-1 {
    border-left: 3px solid #ffc84a;
    background: rgba(255, 200, 74, 0.06);
}

.mobile-user-card.top-2 {
    border-left: 3px solid #d9d9d9;
    background: rgba(217, 217, 217, 0.05);
}

.mobile-user-card.top-3 {
    border-left: 3px solid #cd7f32;
    background: rgba(205, 127, 50, 0.06);
}

.tickets-section .login-buttons .btn-login,
.tickets-section .login-buttons .btn-register {
    min-width: 140px;
    padding: 0.75rem 1.1rem;
    border: 1px solid #333;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tickets-section .login-buttons .btn-login {
    background: transparent;
    color: var(--text-main);
}

.tickets-section .login-buttons .btn-login:hover {
    border-color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

.tickets-section .login-buttons .btn-register {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}

.tickets-section .login-buttons .btn-register:hover {
    background: #ff5722;
    box-shadow: 0 0 14px var(--primary-glow);
}

.support-header {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.support-header h1 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.35rem;
}

.support-header h1 i {
    color: var(--primary);
}

.support-header p {
    color: var(--text-muted);
    font-family: monospace;
}

.support-content {
    background: #0c0c0c;
    border: 1px solid #2a2a2a;
    padding: 1.5rem;
}

.login-required-message {
    text-align: center;
    border: 1px dashed #333;
    padding: 2rem 1.2rem;
    background: rgba(0, 0, 0, 0.25);
}

.login-required-message i {
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 0.8rem;
}

.login-required-message h2 {
    font-family: var(--font-heading);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.login-required-message p {
    color: var(--text-muted);
}

.action-buttons {
    margin-top: 1.2rem;
    display: flex;
    justify-content: center;
    gap: 0.8rem;
}

.action-buttons .login-btn,
.action-buttons .register-btn {
    min-width: 130px;
    padding: 0.7rem 1rem;
    border: 1px solid #333;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
}

.action-buttons .login-btn {
    background: transparent;
    color: var(--text-main);
}

.action-buttons .login-btn:hover {
    border-color: var(--text-main);
}

.action-buttons .register-btn {
    background: var(--primary);
    border-color: var(--primary);
    color: #000;
}

.support-dashboard {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.support-create-card,
.support-chat-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 1rem;
}

.support-create-card h2 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}

.support-ticket-form textarea {
    width: 100%;
    background: #111;
    border: 1px solid #333;
    color: #fff;
    padding: 0.8rem;
    font-family: var(--font-body);
    resize: vertical;
}

.support-ticket-form .input-wrapper select {
    width: 100%;
    background: transparent;
    color: #fff;
    border: 0;
    outline: 0;
    padding: 0.9rem 0.9rem 0.9rem 0;
    font-family: var(--font-body);
}

.support-ticket-form .input-wrapper select option {
    background: #121212;
}

.support-ticket-form label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.char-counter {
    font-size: 13px;
    font-weight: 500;
    color: #888;
    font-family: monospace;
    transition: color 0.2s ease;
}

.form-hint {
    display: block;
    font-size: 12px;
    color: #888;
    margin-top: 5px;
    font-style: italic;
}

.error-message {
    color: #ff6b6b;
    font-size: 13px;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    animation: shake 0.3s ease;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

.support-ticket-form input:invalid:not(:placeholder-shown),
.support-ticket-form textarea:invalid:not(:placeholder-shown) {
    border-color: rgba(255, 107, 107, 0.5);
}

.support-ticket-form input:valid:not(:placeholder-shown),
.support-ticket-form textarea:valid:not(:placeholder-shown) {
    border-color: rgba(74, 222, 128, 0.3);
}

.support-chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #2a2a2a;
    padding-bottom: 0.8rem;
    margin-bottom: 0.8rem;
}

.support-chat-header h3 {
    margin: 0;
    font-family: var(--font-heading);
}

.support-status {
    display: inline-block;
    margin-top: 0.25rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 0.2rem 0.5rem;
    border: 1px solid #333;
}

.support-status.open {
    color: #9affcf;
    border-color: rgba(44, 190, 124, 0.5);
    background: rgba(44, 190, 124, 0.15);
}

.support-status.closed {
    color: #ffcfcf;
    border-color: rgba(202, 64, 64, 0.55);
    background: rgba(202, 64, 64, 0.16);
}

.support-refresh-btn {
    background: transparent;
    border: 1px solid #333;
    color: var(--text-main);
    padding: 0.45rem 0.7rem;
    cursor: pointer;
}

.support-chat-messages {
    background: #0a0a0a;
    border: 1px solid #252525;
    min-height: 260px;
    max-height: 320px;
    overflow: auto;
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.support-msg {
    border: 1px solid #2f2f2f;
    background: #111;
    padding: 0.7rem;
}

.support-msg .meta {
    font-size: 0.74rem;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.support-msg.user {
    border-left: 3px solid var(--secondary);
}

.support-msg.admin {
    border-left: 3px solid var(--primary);
}

.support-msg p {
    margin: 0;
    color: #ddd;
}

.support-reply-form {
    margin-top: 0.8rem;
    display: flex;
    gap: 0.6rem;
    position: relative;
    padding-bottom: 35px;
}

.support-reply-form input {
    flex: 1;
    background: #111;
    border: 1px solid #333;
    color: #fff;
    padding: 0.7rem 80px 0.7rem 0.8rem;
    transition: border-color 0.2s ease;
}

.support-reply-form input:focus {
    border-color: var(--primary);
    outline: none;
}

.support-list-card .support-chat-header {
    margin-bottom: 0.4rem;
}

.support-ticket-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.support-ticket-item {
    border: 1px solid #2f2f2f;
    background: #101010;
    padding: 0.8rem;
}

.support-ticket-item p {
    margin: 0.45rem 0 0.75rem;
    color: var(--text-muted);
}

.ticket-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.support-ticket-detail-card {
    max-width: 900px;
    margin: 0 auto;
}

.support-alert {
    border: 1px solid #333;
    padding: 0.75rem 0.9rem;
    margin-bottom: 0.8rem;
    font-family: monospace;
}

.support-alert-success {
    color: #c7ffe5;
    border-color: rgba(50, 200, 130, 0.5);
    background: rgba(50, 200, 130, 0.12);
}

.support-alert-error {
    color: #ffd2d2;
    border-color: rgba(200, 70, 70, 0.5);
    background: rgba(200, 70, 70, 0.13);
}

@media (max-width: 992px) {
    .support-dashboard {
        grid-template-columns: 1fr;
    }
}

.page-title {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-message {
    background: #0e0e0e;
    border: 1px solid #2e2e2e;
    border-left: 3px solid var(--secondary);
    color: #c9fbff;
    padding: 1rem;
    margin-bottom: 1rem;
}

.bet-history {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 1.2rem;
}

.bet-history h2 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
}

.bet-history-table {
    width: 100%;
    border-collapse: collapse;
}

.bet-history-table th,
.bet-history-table td {
    border-bottom: 1px solid #2a2a2a;
    padding: 0.75rem 0.6rem;
    text-align: left;
}

.bet-history-table th {
    color: var(--text-main);
    font-family: var(--font-heading);
    letter-spacing: 0.6px;
}

.bet-history-table td {
    color: var(--text-muted);
}

.category-section {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    border: 1px solid #2f2f2f;
    background: #0d0d0d;
    padding: 0.8rem;
    height: 100%;
}

.social-link-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid #353535;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    font-size: 1.15rem;
}

.social-title {
    display: block;
    font-family: var(--font-heading);
    color: var(--text-main);
    letter-spacing: 0.4px;
}

.social-category {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.social-arrow {
    color: var(--text-muted);
}

.social-link:hover {
    border-color: var(--primary);
    box-shadow: 0 0 12px rgba(255, 62, 0, 0.2);
}

.social-link:hover .social-arrow {
    color: var(--primary);
}

/* Market Products Grid - 4'lü sütun, tek ürün bile konteynırı kaplamaz */
.market-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 992px) {
    .market-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .market-products-grid {
        grid-template-columns: 1fr;
    }
}