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

body {
    font-family: 'Arial', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: #0a0a0a;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.navbar {
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-logo svg text {
    fill: #FFD700;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #FFD700;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.btn-login {
    background: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-login:hover {
    background: #FFD700;
    color: #0a0a0a;
}

.btn-register {
    background: #FFD700;
    border: 2px solid #FFD700;
    color: #0a0a0a;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
}

.btn-register:hover {
    background: #FFC000;
    border-color: #FFC000;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #FFD700;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8), rgba(10,10,10,0.6));
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-banner {
    background: linear-gradient(135deg, #1a2a40 0%, #2a4060 50%, #4a6080 100%);
    border-radius: 20px;
    padding: 40px;
    border: 3px solid #FFD700;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('meth.png') center/cover;
    opacity: 0.3;
    z-index: 0;
}

.banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.bonus-text {
    display: block;
    margin-bottom: 30px;
}

.bonus-percent {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 10px;
}

.bonus-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    margin-bottom: 10px;
}

.free-spins {
    display: block;
    font-size: 1.5rem;
    color: #00FFFF;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.brew-bonus-btn {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #0a0a0a;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brew-bonus-btn:hover {
    background: linear-gradient(45deg, #FFA500, #FFD700);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Welcome Package Section */
.welcome-package {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

.package-header {
    text-align: center;
    margin-bottom: 60px;
}

.package-title {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(45deg, #FFD700, #FFA500, #00FFFF);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.package-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
}

.package-parts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.package-part {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 2px solid #FFD700;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.package-part:hover {
    transform: translateY(-10px);
}

.part-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.part-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 15px;
}

.part-description {
    color: #cccccc;
    margin-bottom: 20px;
}

.part-bonus {
    margin-bottom: 10px;
}

.bonus-percentage {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #00FFFF;
    margin-bottom: 5px;
}

.bonus-amount {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #FFD700;
}

.part-extra {
    color: #00FFFF;
    font-weight: bold;
    margin-bottom: 20px;
}

.part-text {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.5;
}

.claim-button-container {
    text-align: center;
}

.claim-button {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #0a0a0a;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.claim-button:hover {
    background: linear-gradient(45deg, #FFA500, #FFD700);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

/* Secret Sample Section */
.secret-sample {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
}

.secret-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.secret-title {
    font-size: 2rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 30px;
}

.secret-description p {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.7;
}

.secret-description strong {
    color: #FFD700;
}

.grab-chip-btn {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    color: #0a0a0a;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
    margin-top: 20px;
    text-transform: uppercase;
}

.grab-chip-btn:hover {
    background: linear-gradient(45deg, #FFA500, #FFD700);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.secret-image {
    text-align: center;
}

.alchemist-character {
    width: 300px;
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    border: 3px solid #FFD700;
    margin: 0 auto;
}

/* SEO Content Section */
.seo-content {
    padding: 80px 0;
    background: #0f0f0f;
}

.content-article {
    max-width: 1000px;
    margin: 0 auto;
}

.author-info {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    border-left: 4px solid #FFD700;
}

.author-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 5px;
}

.author-title {
    color: #cccccc;
    font-weight: 500;
    margin-bottom: 10px;
}

.author-bio {
    color: #aaaaaa;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.publish-date {
    color: #888888;
    font-size: 0.9rem;
}

h1 {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 30px;
    line-height: 1.3;
}

h2 {
    font-size: 2rem;
    color: #FFD700;
    margin: 40px 0 20px 0;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}

h3 {
    font-size: 1.5rem;
    color: #00FFFF;
    margin: 30px 0 15px 0;
}

p {
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.8;
}

.info-table {
    background: #1a1a1a;
    border-radius: 10px;
    padding: 20px;
    margin: 40px 0;
    border: 1px solid #333;
}

.table-title {
    font-size: 1.3rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 20px;
    text-align: center;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #333;
    color: #cccccc;
}

th {
    background: #2a2a2a;
    color: #FFD700;
    font-weight: bold;
}

tr:hover {
    background: #222222;
}

/* Footer */
footer {
    background: #0a0a0a;
    border-top: 2px solid #333;
    padding: 40px 0 20px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #FFD700;
}

.contact-info div {
    color: #cccccc;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright, .responsible-gaming {
    color: #888888;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .bonus-percent {
        font-size: 2rem;
    }
    
    .bonus-amount {
        font-size: 1.8rem;
    }
    
    .package-title {
        font-size: 1.8rem;
    }
    
    .secret-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .alchemist-character {
        width: 250px;
        height: 250px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    table {
        font-size: 0.9rem;
    }
    
    th, td {
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero-banner {
        padding: 30px 20px;
    }
    
    .package-parts {
        grid-template-columns: 1fr;
    }
    
    .welcome-package, .secret-sample, .seo-content {
        padding: 60px 0;
    }
}