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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(
        135deg,
        #1a1a1a,
        #252525 40%,
        #1f1f1f 60%,
        #1a1a1a
    );
    color: #ffffff;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(76, 209, 55, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(76, 209, 55, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(76, 209, 55, 0.01) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

header {
    background: linear-gradient(145deg, #2c2c2c, #252525);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #3d3d3d;
}

.casino-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    padding-bottom: 80px;
    position: relative;
    z-index: 1;
}

#casino-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 2rem;
}

.casino-card {
    background: linear-gradient(145deg, #2c2c2c, #252525);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    border: 1px solid #3d3d3d;
    transform: translateY(0);
}

.casino-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(76, 209, 55, 0.2);
    border-color: #4cd137;
}

.casino-card::before,
.casino-card:hover::before,
.cta-button::after,
.cta-button:hover::after {
    display: none;
}

.casino-logo {
    width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px;
    border-radius: 12px;
    filter: brightness(0.95) contrast(1.1);
    mix-blend-mode: lighten;
}

.casino-logo:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.05);
    filter: brightness(1) contrast(1.2);
}

.casino-header {
    text-align: center;
    margin-bottom: 20px;
}
.casino-header a {
    text-decoration: none;
}
.rating-container {
    background: rgba(255,255,255,0.05);
    padding: 10px;
    border-radius: 8px;
    margin: 15px 0;
    text-align: center;
}

.rating-text {
    margin-top: 5px;
    color: #ffd700;
}

.bonus-amount {
    text-align: center;
    background: linear-gradient(145deg, rgba(76, 209, 55, 0.1), rgba(68, 189, 50, 0.15));
    border-radius: 12px;
    border: 2px solid rgba(76, 209, 55, 0.2);
    position: relative;
    overflow: hidden;
    margin: 15px 0 10px 0;
    font-size: 1.6rem;
    font-weight: bold;
    color: #4cd137;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}
.bonus-amount a {
    display: block;
    color: #4cd137;
    text-decoration: none;
    padding: 20px;
}
.bonus-amount:hover {
    transform: translateY(-2px);
    border-color: rgba(76, 209, 55, 0.4);
    box-shadow: 0 4px 15px rgba(76, 209, 55, 0.15);
}

.bonus-amount i {
    margin-right: 10px;
    color: #4cd137;
    font-size: 1.4rem;
    animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.bonus-amount span {
    display: block;
    font-size: 1.1rem;
    color: #b3b3b3;
    margin-top: 5px;
    font-weight: normal;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(145deg, #4cd137, #44bd32);
    color: white;
    text-decoration: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: linear-gradient(145deg, #44bd32, #4cd137);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 209, 55, 0.3);
}

footer {
    background: linear-gradient(145deg, #2c2c2c, #252525);
    position: fixed;
    z-index: 1;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
    color: white;
    text-align: center;
    padding: 1rem;
    bottom: 0;
    width: 100%;
    height: 60px;
    border-top: 1px solid #3d3d3d;
}

.rating-stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin: 10px 0;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

h2 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

p {
    color: #b3b3b3;
}

.filters {
    display: none;
}

.filter-button {
    display: none;
}

.filter-button:hover {
    display: none;
}

.filter-button.active {
    display: none;
}

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

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

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

.place-number {
    animation: float 3s ease-in-out infinite;
}

@media screen and (max-width: 768px) {
    .casino-grid {
        padding-bottom: 100px;
    }

    .cta-button:active {
        background-color: #44bd32;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(76, 209, 55, 0.5);
    }

    .place-number {
        top: -10px;
        left: -10px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        border-width: 2px;
    }
    
    .casino-card {
        width: 90%;
        margin: 10px auto;
        padding: 15px;
    }

    .casino-header {
        flex-direction: column;
        text-align: center;
    }

    .casino-logo {
        width: 180px;
        height: auto;
        margin-bottom: 15px;
    }

    .casino-header h2 {
        font-size: 1.2rem;
        margin: 5px 0;
    }

    .bonus-amount {
        font-size: 1.1rem;
        padding: 8px;
    }

    .bonus-description {
        font-size: 0.9rem;
        padding: 8px;
        text-align: center;
    }

    .payment-methods {
        padding: 10px;
    }

    .payment-card-wrapper {
        width: 35px;
        height: 35px;
        margin: 3px;
    }

    .payment-icon {
        font-size: 20px !important;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .rating-container {
        font-size: 0.9rem;
    }

    .place-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
        top: -15px;
        left: -15px;
    }
}

@media screen and (max-width: 375px) {
    .casino-card {
        width: 95%;
        padding: 12px;
    }

    .casino-logo {
        width: 150px;
    }

    .payment-card-wrapper {
        width: 30px;
        height: 30px;
        margin: 2px;
    }
}

.place-number {
    position: absolute;
    top: -15px;
    left: -15px;
    background: linear-gradient(145deg, #4cd137, #44bd32);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(76, 209, 55, 0.3);
    border: none;
    z-index: 2;
}

.bonus-description {
    font-size: 0.9rem;
    color: #888;
    margin-top: 10px;
    line-height: 1.4;
    padding: 0 10px;
    text-align: center;
}

.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    opacity: 0.03;
}

.casino-symbol {
    position: absolute;
    font-size: 2rem;
    color: #4cd137;
    animation: float-symbol 15s linear infinite;
    opacity: 0.5;
}

@keyframes float-symbol {
    0% {
        transform: translateY(100vh) rotate(0deg);
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
    }
}

.symbol-1 { animation-duration: 20s; }
.symbol-2 { animation-duration: 15s; }
.symbol-3 { animation-duration: 18s; }
.symbol-4 { animation-duration: 25s; }

.payment-card-wrapper {
    background: linear-gradient(145deg, #2c2c2c, #1a1a1a);
    border-radius: 6px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-card-wrapper:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.payment-methods {
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    padding: 15px;
    margin: 15px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.payment-icon {
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

i.payment-icon {
    width: auto;
    height: auto;
    filter: none;
}

.payment-icon:hover {
    transform: translateY(-2px);
    filter: brightness(1.2);
}

.payment-title {
    width: 100%;
    text-align: center;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 8px;
}

.payment-card-wrapper-yellow {
    background: linear-gradient(145deg, #ffb700, #ff9500);
    border: none;
}

.payment-card-wrapper-yellow:hover {
    background: linear-gradient(145deg, #ff9500, #ffb700);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 183, 0, 0.3);
}

.payment-methods {
    gap: 10px;
}

.payment-card-wrapper-blue {
    background: linear-gradient(145deg, #0066b2, #004d8c);
    border: none;
}

.payment-card-wrapper-blue:hover {
    background: linear-gradient(145deg, #004d8c, #0066b2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 178, 0.3);
}

.payment-card-wrapper-green {
    background: linear-gradient(145deg, #00a551, #008542);
    border: none;
}

.payment-card-wrapper-green:hover {
    background: linear-gradient(145deg, #008542, #00a551);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 165, 81, 0.3);
}

.description-section {
    background: linear-gradient(145deg, #2c2c2c, #252525);
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
    border: 1px solid #3d3d3d;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.description-section h2 {
    color: #4cd137;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.description-content {
    color: #b3b3b3;
    line-height: 1.6;
}

.description-content p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #3d3d3d;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.05);
}

.feature i {
    color: #4cd137;
    font-size: 1.5rem;
}

.feature span {
    color: #ffffff;
    font-size: 1.1rem;
}

@media screen and (max-width: 768px) {
    .description-section {
        padding: 20px;
        margin: 20px 10px 40px;
    }

    .description-section h2 {
        font-size: 1.5rem;
    }

    .feature {
        padding: 12px;
    }
}