* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1420 100%);
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
}

.wrapper1 {
    max-width: 1400px;
    margin: 0 auto;
    background: rgba(10, 14, 39, 0.8);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

/* Header Styles */
.main-header1 {
    background: linear-gradient(180deg, #1a1f3a 0%, #0f1420 100%);
    border-bottom: 2px solid #2a3f5f;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo1 a {
    display: flex;
    align-items: center;
}

.logo1 img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo1 img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

nav .buttons46 {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #0a0e27;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    border: 2px solid #ffd700;
}

.btn:hover {
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
}

.btn span {
    display: inline-block;
}

/* Main Body */
.main-body1 {
    padding: 40px 20px;
}

.main {
    max-width: 1200px;
    margin: 0 auto;
}

/* Starzbet CTA */
.starzbet1 {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(42, 63, 95, 0.3) 0%, rgba(26, 31, 58, 0.3) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.transparent-button32 {
    padding: 20px 50px;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    color: #0a0e27;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.transparent-button32:hover {
    background: linear-gradient(135deg, #ff8c00 0%, #ffd700 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.6);
}

/* Content Styles */
.content {
    background: rgba(26, 31, 58, 0.6);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

h1 {
    font-size: 42px;
    color: #ffd700;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    line-height: 1.3;
    font-weight: 700;
}

h2 {
    font-size: 32px;
    color: #ffed4e;
    margin-top: 50px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid rgba(255, 215, 0, 0.3);
    font-weight: 700;
}

h3 {
    font-size: 26px;
    color: #ffa500;
    margin-top: 35px;
    margin-bottom: 20px;
    font-weight: 700;
}

h4 {
    font-size: 20px;
    color: #ffb84d;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 700;
}

p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #d0d0d0;
    text-align: justify;
}

ul {
    margin: 20px 0 30px 30px;
    list-style: none;
}

ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #c0c0c0;
    position: relative;
    padding-left: 30px;
}

ul li:before {
    content: "⭐";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-size: 18px;
}

ul li strong {
    color: #ffd700;
    font-weight: 700;
}

/* Footer */
.main-footer {
    background: linear-gradient(180deg, #0f1420 0%, #1a1f3a 100%);
    padding: 30px 20px;
    text-align: center;
    border-top: 2px solid #2a3f5f;
    margin-top: 60px;
}

.footer-text {
    color: #808080;
    font-size: 14px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 20px;
        padding: 15px 20px;
    }

    .logo1 img {
        height: 40px;
    }

    .content {
        padding: 30px 20px;
    }

    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 24px;
        margin-top: 35px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 18px;
    }

    p, ul li {
        font-size: 15px;
        text-align: left;
    }

    .transparent-button32 {
        padding: 15px 35px;
        font-size: 18px;
    }

    ul {
        margin-left: 15px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 10px 15px;
    }

    .logo1 img {
        height: 35px;
    }

    .content {
        padding: 20px 15px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 18px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .transparent-button32 {
        padding: 12px 25px;
        font-size: 16px;
    }
}