:root {
    --primary: #ff6b35;
    --primary-dark: #e65100;
    --dark: #121212;
    --dark2: #1e1e1e;
    --dark3: #2d2d2d;
    --light: #f8f9fa;
    --gray: #6c757d;
    --gray-dark: #343a40;
    --danger: #dc3545;
    --success: #28a745;
    --warning: #ffc107;
    --info: #17a2b8;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    transform: translateY(-20px);
}

.logo-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
}

.loading-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: float 3s ease-in-out infinite;
}

.loading-spinner {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--warning);
    animation: spin 1.5s linear infinite;
}

.loading-text {
    color: var(--light);
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

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

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark);
    background-image: url('../images/body-bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: overlay;
    color: var(--light);
    line-height: 1.6;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(18, 18, 18, 0.85);
    z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: none;
}

.bonus-card {
    background: rgba(30, 30, 30, 0.4);
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 193, 7, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 193, 7, 0.3);
}

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

.bonus-card a,
.bonus-card button,
.bonus-card .btn {
    position: relative;
    z-index: 2;
}

.partner-logo {
    max-width: 100%;
    width: auto;
    height: 50px;
    max-height: 60px;
    margin: 0 auto;
    display: block;
    position: relative;
    z-index: 2;
    object-fit: contain;
    object-position: center;
}

.code-badge {
    background: rgba(0, 0, 0, 0.4);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 193, 7, 0.2);
    gap: 0.3rem;
}

.code-badge span {
    display: inline-flex;
    gap: 0.3rem;
}

.copy-icon {
    cursor: pointer;
    transition: color 0.2s ease;
}

.copy-icon:hover {
    color: var(--warning);
}

.bonus-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.bonus-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.bonus-list li::before {
    content: '✓';
    color: var(--warning);
    position: absolute;
    left: 0;
}

.csgoroll-bg {
    background: linear-gradient(135deg, rgba(41, 128, 185, 0.1) 0%, rgba(44, 62, 80, 0.8) 100%), url('../images/csgoroll-bg.jpg') center/cover no-repeat;
}

.csgobig-bg {
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.1) 0%, rgba(44, 62, 80, 0.8) 100%), url('../images/big-bg.jpg') center/cover no-repeat;
}

.raingg-bg {
    background: linear-gradient(135deg, rgba(41, 128, 185, 0.1) 0%, rgba(44, 62, 80, 0.8) 100%), url('../images/rain-gg-bg.jpg') center/cover no-repeat;
}

.rainbet-bg {
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.1) 0%, rgba(44, 62, 80, 0.8) 100%), url('../images/rainbet-bg.jpg') center/cover no-repeat;
}

.clasgg-bg {
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.1) 0%, rgba(44, 62, 80, 0.8) 100%), url('../images/clasgg-bg.jpg') center/cover no-repeat;
}

.skinrave-bg {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.1) 0%, rgba(44, 62, 80, 0.8) 100%), url('../images/skinrave-bg.jpg') center/cover no-repeat;
}

.csgoempire-bg {
    background: linear-gradient(135deg, rgba(142, 68, 173, 0.1) 0%, rgba(44, 62, 80, 0.8) 100%), url('../images/empire-bg.jpg') center/cover no-repeat;
}

@media (max-width: 768px) {
    .bonus-card {
        padding: 1rem;
    }
    
    .partner-logo {
        max-width: 100px;
    }
}

.leaderboard-dropdown {
    min-width: 160px;
    padding: 0.5rem;
    background: rgba(30, 30, 30, 0.98);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.leaderboard-dropdown .dropdown-item {
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.2s ease;
    margin-bottom: 0.25rem;
}

.leaderboard-dropdown .dropdown-item:last-child {
    margin-bottom: 0;
}

.leaderboard-dropdown .dropdown-item:hover {
    background: rgba(255, 193, 7, 0.1);
    transform: translateX(2px);
}

.leaderboard-dropdown img {
    width: 100%;
    max-width: 140px;
    height: auto;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    margin: 0 auto;
}

.leaderboard-dropdown .dropdown-item:hover img {
    transform: scale(1.02);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.navbar {
    padding: 1rem 0;
    background-color: rgba(18, 18, 18, 0.9) !important;
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.nav-link:not(.dropdown-toggle)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--warning);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:not(.dropdown-toggle):hover::after,
.nav-link.active:not(.dropdown-toggle)::after {
    width: 60%;
}

.highlight-text {
    color: #FFD700;
    font-weight: 700;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
    padding: 0 4px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.highlight-text:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.promo-text {
    color: #fff !important;
    text-shadow: 0 0 10px rgba(255, 193, 7, 0.7);
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    padding-right: 15px;
    margin-right: 15px;
}

.promo-text::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 60%;
    background: linear-gradient(to bottom, transparent, var(--warning), transparent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

.discord-btn {
    background-color: #5865F2;
    color: white !important;
    border: none;
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.discord-btn:hover {
    background-color: #4752c4;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(88, 101, 242, 0.4);
    color: white;
}

.btn {
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-warning {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #000;
}

.btn-warning:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-outline-warning {
    color: var(--warning);
    border-color: var(--warning);
}

.btn-outline-warning:hover {
    background-color: var(--warning);
    border-color: var(--warning);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.hero-logo {
    position: relative;
    display: inline-block;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.hero-logo img {
    transition: all 0.3s ease;
    filter: drop-shadow(0 10px 15px rgba(255, 193, 7, 0.3));
}

.hero-logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 25px rgba(255, 193, 7, 0.5));
}

.section-divider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
    z-index: 1;
}

.section-divider.diamond {
    height: 15px; /* Reduced from 80px */
    position: relative;
    background: 
        linear-gradient(45deg, var(--dark) 25%, transparent 25%) -20px 0,
        linear-gradient(-45deg, var(--dark) 25%, transparent 25%) -20px 0,
        linear-gradient(45deg, transparent 75%, var(--dark) 75%),
        linear-gradient(-45deg, transparent 75%, var(--dark) 75%);
    background-size: 40px 40px; /* Reduced from 50px 50px */
    background-color: rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.section-divider.diamond::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(255, 193, 7, 0.3), 
        rgba(255, 193, 7, 0.6),
        rgba(255, 193, 7, 0.3),
        transparent
    );
    animation: shine 3s infinite;
    z-index: 1;
}

.section-divider.diamond::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 193, 7, 0.1) 1px, transparent 1px);
    background-size: 10px 10px;
    z-index: 0;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hero-section {
    position: relative;
    padding: 120px 0 80px;
    color: var(--light);
}

.hero-section .col-lg-6:first-child {
    margin-bottom: 40px;
}


@media (min-width: 992px) {
    .hero-section .col-lg-6:first-child {
        margin-bottom: 0;
        padding-right: 2rem;
    }
    
    .hero-section .col-lg-6:last-child {
        padding-left: 2rem;
    }
}

.hero-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    width: 100%;
}

.hero-logo-container {
    width: 180px;
    margin: 30px 0;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    transform: scale(1.1);
}

@media (min-width: 768px) {
    .hero-logo-container {
        width: 200px;
        margin: 0 30px 0 0;
    }
    
    .hero-logo {
        max-height: 180px;
        transform: scale(1);
    }
}

@media (min-width: 768px) {
    .hero-content-wrapper {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        align-items: center;
        gap: 2rem;
    }
    
    .hero-title {
        margin-bottom: 0;
    }
}

.hero-section .hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .hero-section .hero-title {
        font-size: 3.5rem;
    }
}

@media (min-width: 992px) {
    .hero-section .hero-title {
        font-size: 4rem;
    }
}

.hero-section {
    padding: 160px 0 80px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.stream-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid var(--dark3);
    transition: all 0.3s ease;
}

.stream-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.stream-embed {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

.live-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #ff0000;
    color: white;
    padding: 0.25rem 0.75rem 0.25rem 0.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 6px;
}

.live-badge.offline {
    background-color: #6c757d;
    animation: none;
}

.status-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #fff;
    animation: pulse 1.5s infinite;
}

.live-badge.offline .status-indicator {
    background-color: #d1d1d1;
    animation: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}


#bonus {
    padding: 100px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

#bonus::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 50%);
    z-index: 1;
}

#bonus .container {
    position: relative;
    z-index: 2;
}

.bonus-card {
    background: var(--dark2);
    border: 1px solid var(--dark3);
    border-radius: 10px;
    padding: 1.25rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 107, 53, 0.3);
}

.bonus-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 193, 7, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--warning);
}


#community {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #121212 100%);
}

.social-links {
    margin-top: 2rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--dark3);
    color: var(--light);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--warning);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

footer {
    background-color: var(--dark2);
    color: var(--gray);
    padding: 4rem 0 2rem;
}

footer h5, footer h6 {
    color: var(--light);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

footer ul li {
    margin-bottom: 0.75rem;
}

footer ul li a {
    color: var(--gray);
    transition: all 0.3s ease;
}

footer ul li a:hover {
    color: var(--warning);
    padding-left: 5px;
}


@media (max-width: 991.98px) {
    .hero-section {
        padding: 120px 0 60px;
        text-align: center;
    }
    
    .hero-logo img {
        height: 120px;
        margin: 0 auto;
    }
    
    h1 {
        font-size: 2.2rem;
        margin-top: 1rem;
    }
    
    .live-stats {
        justify-content: center;
        margin: 1.5rem 0;
    }
    
    .stream-container {
        margin-top: 2rem;
    }
    
    .bonus-card {
        margin-bottom: 1.5rem;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .promo-text {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 100px 0 40px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .stream-embed {
        height: 250px;
    }
    

    .bonus-section .row {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -8px;
    }
    
    .bonus-section .col-md-4, 
    .bonus-section .col-lg-3 {
        padding: 0 8px;
        margin-bottom: 16px;
    }
    
    .bonus-card {
        margin: 0;
        padding: 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .bonus-list {
        padding-left: 1.25rem;
        margin: 1rem 0;
    }
    
    .bonus-list li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
        text-align: left;
    }
    
    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        width: 100%;
    }
    
    .footer h6 {
        margin-top: 1.5rem;
    }
    
    .age-badge {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    
    .age-number {
        font-size: 0.9rem;
    }
    
    .age-plus {
        font-size: 0.7rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 60px 0 20px;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .hero-section .d-flex {
        flex-direction: column;
        gap: 1rem !important;
        text-align: center;
    }
    
    .hero-logo {
        margin: 0 auto;
    }
    
    .bonus-section .row {
        display: flex;
        flex-wrap: wrap;
        margin: 0;
        width: 100%;
    }
    
    .bonus-section [class*="col-"] {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding: 0 0 16px 0 !important;
        margin: 0 !important;
        width: 100%;
    }
    
    .bonus-card {
        width: 100%;
        margin: 0 0 16px 0;
        padding: 1.25rem;
        border-radius: 8px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        box-sizing: border-box;
    }
    
    .partner-logo {
        height: 50px;
        width: auto;
        max-width: 100%;
        object-fit: contain;
        margin: 0 auto 1rem !important;
        display: block;
    }
    
    .bonus-list {
        padding-left: 1rem;
        margin: 0.5rem 0;
    }
    
    .bonus-list li {
        font-size: 0.7rem;
        margin-bottom: 0.25rem;
        line-height: 1.3;
    }
    
    .code-badge {
        font-size: 0.7rem;
        margin-bottom: 0.5rem !important;
        padding: 0.25rem 0.5rem;
        border-radius: 4px;
    }
    
    .btn {
        padding: 0.4rem 0.5rem;
        font-size: 0.75rem;
        margin-top: 0.25rem !important;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .bonus-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    .bonus-list {
        padding-left: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .bonus-list li {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }
    
    .bonus-card .btn {
        padding: 0.5rem;
        font-size: 0.85rem;
    }
    
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .navbar-brand img {
        height: 24px;
    }
}

.age-restriction-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0.5rem 0 0;
    justify-content: flex-start;
}

.age-badge {
    background: linear-gradient(145deg, #ff0000, #cc0000);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    border: 2px solid white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.age-badge:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.age-number {
    font-size: 1rem;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.age-plus {
    font-size: 0.8rem;
    margin-left: 1px;
    position: relative;
    top: -1px;
}

.age-badge::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    right: -10%;
    bottom: -10%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    transform: rotate(45deg);
}
