* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #0a0e1a;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Slider Section */
.slider {
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 176, 224, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(247, 147, 30, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.slider__menu {
    padding: 20px 0;
    position: relative;
    z-index: 10;
}

.slider__menu--inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slider__menu--logo img {
    max-height: 60px;
    width: auto;
}

.slider__menu--buttons {
    display: flex;
    gap: 15px;
}

.slider__menu--buttons a {
    padding: 12px 30px;
    background: linear-gradient(135deg, #00B0E0 0%, #0099cc 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
}

.slider__menu--buttons a:hover {
    background: linear-gradient(135deg, #F7931E 0%, #e6851a 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(247, 147, 30, 0.4);
}

.slider__details {
    padding: 60px 0 0px 0;
    position: relative;
    z-index: 5;
}

.slider__details--inner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.slider__details--inner h1 {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #00B0E0 0%, #F7931E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.slider__details--inner p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #e0e0e0;
    line-height: 1.8;
}

.slider__details--inner a {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #F7931E 0%, #e6851a 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(247, 147, 30, 0.3);
}

.slider__details--inner a:hover {
    background: linear-gradient(135deg, #00B0E0 0%, #0099cc 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 176, 224, 0.4);
}

.slider__features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.slider__features--item {
    text-align: center;
    flex: 0 0 auto;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    background: rgba(26, 31, 46, 0.3);
    padding: 20px 25px;
    border-radius: 10px;
    border: 1px solid rgba(0, 176, 224, 0.2);
    min-width: 140px;
    width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slider__features--item:hover {
    transform: translateY(-5px);
    background: rgba(26, 31, 46, 0.5);
    border-color: rgba(247, 147, 30, 0.4);
    box-shadow: 0 5px 15px rgba(247, 147, 30, 0.2);
}

.slider__features--item:hover .slider__features--icon {
    filter: drop-shadow(0 4px 8px rgba(247, 147, 30, 0.5));
    transform: scale(1.1);
}

.slider__features--icon {
    font-size: 35px;
    margin-bottom: 10px;
    filter: drop-shadow(0 2px 4px rgba(0, 176, 224, 0.3));
    transition: all 0.3s ease;
    line-height: 1;
    display: block;
}

.slider__features--item p {
    font-size: 14px;
    color: #e0e0e0;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    text-align: center;
}

/* Games Section */
.games {
    padding: 0px 0 80px 0;
    background-color: #141525;
}

.games__title {
    text-align: center;
    margin-bottom: 60px;
}

.games__title h3 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
}

.games__title h3 span {
    color: #00B0E0;
}

.games__title h3 span:last-of-type {
    color: #F7931E;
}

.games__inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.games__inner--col {
    background: linear-gradient(135deg, #1a1f2e 0%, #252a3a 100%);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.games__inner--col:hover {
    transform: translateY(-5px);
    border-color: #00B0E0;
    box-shadow: 0 10px 30px rgba(0, 176, 224, 0.2);
}

.games__inner--col img {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

.games__inner--col h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #00B0E0;
    font-weight: 700;
}

.games__inner--col p {
    color: #d0d0d0;
    line-height: 1.7;
}

.games__inner--col p a {
    color: #F7931E;
    text-decoration: none;
    font-weight: 600;
}

.games__inner--col p a:hover {
    text-decoration: underline;
}

/* Bonus Section */
.bonus {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0e1a 0%, #141525 100%);
}

.bonus__title {
    text-align: center;
    margin-bottom: 60px;
}

.bonus__title h3 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #00B0E0 0%, #F7931E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonus__title p {
    font-size: 18px;
    color: #d0d0d0;
}

.bonus__inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.bonus__inner--col {
    background: linear-gradient(135deg, #1a1f2e 0%, #252a3a 100%);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.bonus__inner--col:hover {
    transform: translateY(-5px);
    border-color: #F7931E;
    box-shadow: 0 10px 30px rgba(247, 147, 30, 0.2);
}

.bonus__inner--col img {
    width: 100%;
    max-width: 180px;
    height: auto;
    margin-bottom: 15px;
    border-radius: 8px;
}

.bonus__inner--col h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #F7931E;
    font-weight: 700;
}

.bonus__inner--col p {
    color: #d0d0d0;
    line-height: 1.6;
    font-size: 14px;
}

/* Mission Section */
.mission {
    padding: 80px 0;
    background-color: #141525;
}

.mission__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.mission__inner--img img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.mission__inner--detail h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.mission__inner--detail h2 a {
    color: #00B0E0;
    text-decoration: none;
}

.mission__inner--detail h2 a:hover {
    color: #F7931E;
}

.mission__inner--detail p {
    font-size: 16px;
    color: #d0d0d0;
    line-height: 1.8;
    margin-bottom: 30px;
}

.bonus-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #00B0E0 0%, #0099cc 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 176, 224, 0.3);
}

.bonus-button:hover {
    background: linear-gradient(135deg, #F7931E 0%, #e6851a 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(247, 147, 30, 0.4);
}

/* Content Section */
.content {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0e1a 0%, #141525 100%);
}

.content__inner {
    max-width: 900px;
    margin: 0 auto;
    max-height: 600px;
    overflow-y: auto;
    padding: 20px;
    background: rgba(26, 31, 46, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(0, 176, 224, 0.2);
}

.content__inner::-webkit-scrollbar {
    width: 8px;
}

.content__inner::-webkit-scrollbar-track {
    background: rgba(26, 31, 46, 0.5);
    border-radius: 10px;
}

.content__inner::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00B0E0 0%, #F7931E 100%);
    border-radius: 10px;
}

.content__inner::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #F7931E 0%, #00B0E0 100%);
}

.content__inner h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #00B0E0;
    font-weight: 700;
}

.content__inner p {
    font-size: 16px;
    color: #d0d0d0;
    line-height: 1.8;
    margin-bottom: 20px;
}

.content__inner a {
    color: #F7931E;
    text-decoration: none;
    font-weight: 600;
}

.content__inner a:hover {
    text-decoration: underline;
    color: #00B0E0;
}

/* Footer */
.footer {
    background-color: #0a0e1a;
    border-top: 2px solid #1a1f2e;
}

.footer__top {
    padding: 60px 0 40px;
}

.footer__top--inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer__top--logo img {
    max-height: 50px;
    margin-bottom: 20px;
}

.footer__top--logo p {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer__top--logo p a {
    color: #00B0E0;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer__top--logo p a:hover {
    color: #F7931E;
    text-decoration: underline;
}

.footer__top--menu p {
    font-size: 18px;
    font-weight: 700;
    color: #00B0E0;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer__top--menu ul {
    list-style: none;
}

.footer__top--menu ul li {
    margin-bottom: 12px;
}

.footer__top--menu ul li a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer__top--menu ul li a:hover {
    color: #F7931E;
    padding-left: 5px;
}

.footer__bottom {
    padding: 30px 0;
    border-top: 1px solid #1a1f2e;
}

.footer__bottom--info {
    text-align: center;
}

.footer__bottom--info p {
    font-size: 14px;
    color: #b0b0b0;
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .slider__menu--inner {
        flex-direction: column;
        gap: 20px;
    }

    .slider__details--inner h1 {
        font-size: 32px;
    }
    
    .slider__features {
        gap: 25px;
        margin-top: 40px;
    }
    
    .slider__features--icon {
        font-size: 35px;
    }
    
    .slider__features--item p {
        font-size: 14px;
    }

    .games__inner {
        grid-template-columns: 1fr;
    }
    
    .bonus__inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .mission__inner {
        grid-template-columns: 1fr;
    }

    .footer__top--inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer__top--logo > a:last-of-type {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }
    
    .footer__top--menu {
        text-align: center;
    }
    
    .footer__top--menu ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer__top--menu ul li {
        text-align: center;
    }
    
    .footer__top--menu ul li:last-child {
        display: flex;
        justify-content: center;
        width: 100%;
    }
    
    .footer__top--menu ul li:last-child a {
        display: flex;
        justify-content: center;
    }

    .slider__menu--buttons {
        flex-direction: column;
        width: 100%;
    }

    .slider__menu--buttons a {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 1024px) {
    .bonus__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .slider__details--inner h1 {
        font-size: 28px;
    }
    
    .slider__features {
        gap: 20px;
        margin-top: 30px;
    }
    
    .slider__features--icon {
        font-size: 30px;
    }
    
    .slider__features--item p {
        font-size: 12px;
    }

    .games__title h3,
    .bonus__title h3 {
        font-size: 28px;
    }

    .mission__inner--detail h2 {
        font-size: 24px;
    }

    .content__inner h3 {
        font-size: 24px;
    }
    
    .bonus__inner {
        grid-template-columns: 1fr;
    }
}