/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FFD700;
}

.header-cta-button {
    background: #FFD700;
    color: #000;
    border: 2px solid #000;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 20px;
}

.header-cta-button:hover {
    background: #000;
    color: #FFD700;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.roblox-scene {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4a90e2 0%, #7b68ee 50%, #ff6b6b 100%);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    filter: blur(1px);
    opacity: 0.8;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 80px;
}

.hero-left {
    color: white;
}

.roblox-icon {
    margin-bottom: 30px;
    position: relative;
}

.icon-outer {
    width: 60px;
    height: 60px;
    border: 3px solid white;
    background: transparent;
    position: relative;
}

.icon-inner {
    width: 30px;
    height: 30px;
    border: 2px solid white;
    background: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #FFD700;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.7;
    opacity: 0.9;
}

.cta-button {
    background: #FFD700;
    color: #000;
    border: 2px solid #000;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: #000;
    color: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.roblox-character {
    width: 200px;
    height: 300px;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.character-1 {
    background: linear-gradient(45deg, #87CEEB 0%, #98D8E8 50%, #B0E0E6 100%);
    border-radius: 10px;
    position: relative;
}

.character-1::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #8B4513;
    border-radius: 50%;
}

.character-1::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 80px;
    background: #87CEEB;
    border-radius: 5px;
}

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

/* Section Styles */
.section {
    padding: 80px 0;
    position: relative;
}

.white-bg {
    background: #fff;
    color: #333;
}

.dark-bg {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.section-title.white {
    color: white;
}

.section-title.large {
    font-size: 48px;
    text-align: left;
}

.section-description {
    font-size: 18px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.section-description.white {
    color: white;
    text-align: left;
}

/* How It Works Section */
#how-it-works {
    padding-top: 120px;
}

/* Why Choose Section */
.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-left {
    display: flex;
    justify-content: center;
}

.character-2 {
    background: linear-gradient(45deg, #DAA520 0%, #FFD700 50%, #FFA500 100%);
    border-radius: 10px;
    position: relative;
}

.character-2::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: #8B4513;
    border-radius: 50%;
}

.character-2::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #FFD700;
    border-radius: 50%;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    font-size: 18px;
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #FFD700;
    font-weight: bold;
    font-size: 20px;
}

/* CTA Center */
.cta-center {
    text-align: center;
    margin-top: 40px;
}

/* Built for Gamers Section */
.built-for-gamers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.built-for-gamers-right {
    display: flex;
    justify-content: center;
}

.character-3 {
    background: linear-gradient(45deg, #32CD32 0%, #00FF00 50%, #90EE90 100%);
    border-radius: 10px;
    position: relative;
}

.character-3::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #228B22;
    border-radius: 50%;
}

.character-3::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 80px;
    background: #32CD32;
    border-radius: 5px;
}

.subtitle {
    font-size: 28px;
    font-weight: 700;
    margin: 30px 0 20px;
    color: #FFD700;
}

.subtitle.white {
    color: #FFD700;
}

/* Tips Section */
.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.tip-card {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tip-icon {
    margin-bottom: 20px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: #4A90E2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.icon-text {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.tip-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.tip-description {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

/* Legit Section */
.legit-content {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

/* Safe Methods Section */
.methods-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.method-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #4A90E2;
}

.method-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.method-item p {
    color: #666;
    line-height: 1.5;
}

.warning-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
}

.warning-box p {
    color: #856404;
    margin: 0;
    font-weight: 500;
}

/* Scams Section */
.scams-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.scam-item {
    background: #f8d7da;
    color: #721c24;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #dc3545;
    font-weight: 500;
}

.warning-text {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #dc3545;
    margin-top: 30px;
    font-style: italic;
}

/* Footer */
.footer {
    background: #fff;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #eee;
}

.footer-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.footer-icon .icon-outer {
    width: 40px;
    height: 40px;
    border: 2px solid #333;
    background: transparent;
    position: relative;
}

.footer-icon .icon-inner {
    width: 20px;
    height: 20px;
    border: 1px solid #333;
    background: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.copyright {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    margin-bottom: 15px;
}

.footer-links {
    font-size: 14px;
    color: #666;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFD700;
}

/* Background Variations */
.roblox-scene-2 {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    background-image: 
        radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    filter: blur(1px);
    opacity: 0.6;
}

.roblox-scene-3 {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 50%, #CD853F 100%);
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    filter: blur(1px);
    opacity: 0.7;
}

.roblox-scene-4 {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
    background-image: 
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    filter: blur(1px);
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-title.large {
        font-size: 36px;
    }
    
    .why-choose-content,
    .built-for-gamers-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .methods-list,
    .scams-list {
        grid-template-columns: 1fr;
    }
    
    .nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-link {
        font-size: 12px;
    }
    
    .header-cta-button {
        margin-left: 0;
        margin-top: 10px;
        padding: 8px 16px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .roblox-character {
        width: 150px;
        height: 225px;
    }
}

/* Page Layout Styles */
.main-content {
    padding-top: 100px;
    min-height: 100vh;
    background: #fff;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    border-radius: 15px;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
}

.last-updated {
    font-size: 16px;
    opacity: 0.8;
    color: #FFD700;
}

.content-section {
    margin-bottom: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #4A90E2;
}

.content-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.content-section h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 25px;
    color: #333;
}

.content-section p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

.content-section ul {
    margin: 15px 0;
    padding-left: 30px;
}

.content-section li {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #555;
}

.content-section a {
    color: #4A90E2;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.content-section a:hover {
    color: #FFD700;
    text-decoration: underline;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 0.6s ease-out;
}
