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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    position: relative;
}

/* Magic Dust Animation */
.magic-dust {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100;
    overflow: hidden;
}

.dust-particle {
    position: absolute;
    bottom: -20px; /* Start below the screen */
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    opacity: 0;
    animation: floatUp linear forwards;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.8), 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes floatUp {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) translateX(var(--drift));
        opacity: 0;
    }
}

.section {
    width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px 0;
    z-index: 1;
}

/* Hero Section */
.hero {
    background: #667eea;
    color: white;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    padding: 40px;
}

.logo {
    width: 400px;
    height: auto;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-button {
    background: #764ba2;
    color: white;
    padding: 20px 50px;
    border: none;
    border-radius: 10px;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #5a3a7a;
    transform: scale(1.05);
}

/* Feature Sections */
.warrior-wizard-section {
    background: linear-gradient(45deg, #ff6b6b 50%, #4ecdc4 50%);
}

.elf-section {
    background: #27ae60;
}

.what-is-section {
    background: #9b59b6;
}

.how-to-join-section {
    background: #2c3e50;
}

.ai-section {
    background: #45b7d1;
}

.dragon-section {
    background: #f9ca24;
}

.rules-section {
    background: #6c5ce7;
}

.dual-feature {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    width: 100%;
    padding: 0 40px;
    gap: 60px;
}

.warrior-part,
.wizard-part {
    display: flex;
    align-items: center;
    gap: 80px;
}

.wizard-part {
    flex-direction: row-reverse;
}

.feature {
    display: flex;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 0 40px;
    gap: 80px;
}

.feature:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1.2;
    text-align: center;
}

.feature-image img {
    width: 500px;
    height: 500px;
    object-fit: contain;
    transition: transform 0.6s ease;
    transform: scale(0.9);
    opacity: 0.8;
}

.feature-image img:hover {
    transform: scale(1.1);
}

.section.active .feature-image img {
    transform: scale(1.05);
    opacity: 1;
}

.feature-content {
    flex: 1;
    color: white;
}

.feature h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    color: white;
}

.feature p {
    font-size: 1.4rem;
    line-height: 1.6;
}

/* What is Let's pAIr Section */
.what-is-icon i {
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

/* How to Join Section */
.how-to-join-content {
    text-align: center;
    max-width: 1200px;
    color: white;
    padding: 0 40px;
}

.how-to-join-content h2 {
    font-size: 3.5rem;
    margin-bottom: 50px;
    font-weight: 700;
    color: white;
}

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

.step-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.step-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

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

.step-icon i {
    transition: all 0.3s ease;
}

.step-item:hover .step-icon i {
    transform: scale(1.1);
}

.step-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: white;
    font-weight: 600;
}

.step-item p {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

/* Rules Section */
.rules-content {
    text-align: center;
    max-width: 800px;
    color: white;
}

.rules h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.rules p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.discord-button {
    background: white;
    color: #5865F2;
    padding: 20px 50px;
    border: none;
    border-radius: 10px;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.discord-button:hover {
    background: #f8f9fa;
    transform: scale(1.05);
}

/* Next Raid Info */
.next-raid-info {
    margin: 30px 0;
}

.next-raid-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #FFD700;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.countdown-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    min-width: 80px;
}

.countdown-item span {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #FFD700;
}

.countdown-item label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Navigation Buttons - Hidden */
.nav-button {
    display: none;
}

/* Scroll Down Arrow */
.scroll-arrow {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    cursor: pointer;
    z-index: 1000;
    animation: bounce 2s infinite;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

.scroll-arrow::after {
    content: '↓';
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.scroll-arrow.hidden {
    opacity: 0;
    pointer-events: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Mobile scroll arrow */
@media (max-width: 768px) {
    .scroll-arrow {
        right: 20px;
        bottom: 20px;
        width: 45px;
        height: 45px;
    }
    
    .scroll-arrow::after {
        font-size: 20px;
    }
}

/* Section Indicators */
.section-indicators {
    position: fixed;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    margin: 10px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.3);
}

/* Responsive */
@media (min-width: 1200px) and (max-width: 1900px) {
    .logo {
        width: 350px;
    }
    
    .hero-content {
        max-width: 700px;
        padding: 30px;
    }
    
    .hero p {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }
    
    .feature-image img {
        width: 450px;
        height: 450px;
        transform: scale(0.9);
        opacity: 0.8;
    }
    
    .section.active .feature-image img {
        transform: scale(1.05);
        opacity: 1;
    }
    
    .feature h2 {
        font-size: 3rem;
        margin-bottom: 25px;
    }
    
    .feature p {
        font-size: 1.3rem;
    }
    
    .feature {
        gap: 60px;
        max-width: 1000px;
    }
    
    .rules-content {
        max-width: 700px;
    }
    
    .rules h2 {
        font-size: 3rem;
        margin-bottom: 25px;
    }
    
    .rules p {
        font-size: 1.3rem;
        margin-bottom: 30px;
    }
    
    .next-raid-info h3 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .countdown-item {
        padding: 12px;
        min-width: 70px;
    }
    
    .countdown-item span {
        font-size: 1.8rem;
    }
}

@media (min-width: 1901px) {
    .logo {
        width: 300px;
    }
    
    .hero-content {
        max-width: 600px;
        padding: 25px;
    }
    
    .hero p {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }
    
    .cta-button {
        padding: 15px 40px;
        font-size: 1.2rem;
    }
    
    .feature-image img {
        width: 400px;
        height: 400px;
        transform: scale(0.9);
        opacity: 0.8;
    }
    
    .section.active .feature-image img {
        transform: scale(1.05);
        opacity: 1;
    }
    
    .feature h2 {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }
    
    .feature p {
        font-size: 1.2rem;
    }
    
    .feature {
        gap: 50px;
        max-width: 900px;
    }
    
    .rules-content {
        max-width: 600px;
    }
    
    .rules h2 {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }
    
    .rules p {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }
    
    .next-raid-info h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .countdown-item {
        padding: 10px;
        min-width: 65px;
    }
    
    .countdown-item span {
        font-size: 1.6rem;
    }
    
    .discord-button {
        padding: 15px 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .logo {
        width: 320px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
    
    .feature-image img {
        width: 400px;
        height: 400px;
        transform: scale(0.9);
        opacity: 0.8;
    }
    
    .section.active .feature-image img {
        transform: scale(1.05);
        opacity: 1;
    }
    
    .feature h2 {
        font-size: 3rem;
    }
    
    .feature p {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .logo {
        width: 250px;
    }

    .dual-feature {
        gap: 40px;
    }

    .warrior-part,
    .wizard-part {
        flex-direction: column !important;
        gap: 40px;
        text-align: center;
    }

    .feature {
        flex-direction: column !important;
        gap: 40px;
        text-align: center;
    }

    .feature-image img {
        width: 300px;
        height: 300px;
    }

    .icon-placeholder {
        width: 300px;
        height: 300px;
    }

    .feature h2 {
        font-size: 2.5rem;
    }

    .feature p {
        font-size: 1.2rem;
    }

    .how-to-join-content h2 {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-item {
        padding: 20px 15px;
    }

    .step-icon i {
        width: 60px !important;
        height: 60px !important;
    }

    .step-item h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .step-item p {
        font-size: 1rem;
    }

    .rules h2 {
        font-size: 2.5rem;
    }
    
    .countdown {
        gap: 15px;
    }
    
    .countdown-item {
        padding: 8px;
        min-width: 60px;
    }
    
    .countdown-item span {
        font-size: 1.4rem;
    }
    
    .discord-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .how-to-join-content h2 {
        font-size: 3rem;
        margin-bottom: 35px;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .icon-placeholder {
        width: 400px;
        height: 400px;
    }
}

@media (max-height: 600px) {
    .section {
        min-height: auto;
        padding: 15px 0;
    }
    
    .logo {
        width: 200px !important;
        margin-bottom: 15px;
    }
    
    .hero-content {
        padding: 15px !important;
    }
    
    .hero p {
        font-size: 1rem !important;
        margin-bottom: 20px !important;
    }
    
    .cta-button {
        padding: 12px 30px !important;
        font-size: 1rem !important;
    }
    
    .dual-feature {
        gap: 20px !important;
        padding: 0 20px;
    }
    
    .warrior-part,
    .wizard-part {
        flex-direction: column !important;
        gap: 20px !important;
    }
    
    .feature {
        flex-direction: column !important;
        gap: 20px !important;
        padding: 0 20px;
    }
    
    .icon-placeholder {
        width: 200px !important;
        height: 200px !important;
    }
    
    .how-to-join-content {
        max-width: 90% !important;
    }
    
    .how-to-join-content h2 {
        font-size: 1.8rem !important;
        margin-bottom: 15px !important;
    }
    
    .steps-grid {
        gap: 15px !important;
    }
    
    .step-item {
        padding: 10px !important;
    }
    
    .step-icon i {
        width: 40px !important;
        height: 40px !important;
    }
    
    .step-item h3 {
        font-size: 1rem !important;
        margin-bottom: 8px !important;
    }

    .step-item p {
        font-size: 0.8rem !important;
    }
    
    .feature-image img {
        width: 200px !important;
        height: 200px !important;
    }
    
    .feature h2 {
        font-size: 1.8rem !important;
        margin-bottom: 15px !important;
    }
    
    .feature p {
        font-size: 1rem !important;
    }
    
    .rules-content {
        max-width: 90% !important;
    }
    
    .rules h2 {
        font-size: 1.8rem !important;
        margin-bottom: 15px !important;
    }
    
    .rules p {
        font-size: 1rem !important;
        margin-bottom: 20px !important;
    }
    
    .next-raid-info h3 {
        font-size: 1.2rem !important;
        margin-bottom: 10px !important;
    }
    
    .countdown {
        gap: 10px !important;
        margin-bottom: 20px !important;
    }
    
    .countdown-item {
        padding: 6px !important;
        min-width: 50px !important;
    }
    
    .countdown-item span {
        font-size: 1.2rem !important;
    }
    
    .countdown-item label {
        font-size: 0.7rem !important;
    }
    
    .discord-button {
        padding: 12px 30px !important;
        font-size: 1rem !important;
    }
    
    .section-indicators {
        left: 15px;
    }
    
    .indicator {
        width: 12px;
        height: 12px;
        margin: 8px 0;
    }
}

@media (max-height: 400px) {
    .section {
        min-height: auto;
        padding: 10px 0;
    }
    
    .logo {
        width: 150px !important;
        margin-bottom: 10px;
    }
    
    .hero-content {
        padding: 10px !important;
    }
    
    .hero p {
        font-size: 0.9rem !important;
        margin-bottom: 15px !important;
    }
    
    .cta-button {
        padding: 8px 20px !important;
        font-size: 0.9rem !important;
    }
    
    .dual-feature {
        gap: 15px !important;
    }
    
    .warrior-part,
    .wizard-part {
        gap: 15px !important;
    }
    
    .feature {
        gap: 15px !important;
    }
    
    .icon-placeholder {
        width: 150px !important;
        height: 150px !important;
    }
    
    .how-to-join-content h2 {
        font-size: 1.5rem !important;
        margin-bottom: 10px !important;
    }
    
    .steps-grid {
        gap: 10px !important;
    }
    
    .step-item {
        padding: 8px !important;
    }
    
    .step-icon i {
        width: 30px !important;
        height: 30px !important;
    }
    
    .step-item h3 {
        font-size: 0.9rem !important;
        margin-bottom: 5px !important;
    }
    
    .step-item p {
        font-size: 0.7rem !important;
    }
    
    .feature-image img {
        width: 150px !important;
        height: 150px !important;
    }
    
    .feature h2 {
        font-size: 1.5rem !important;
        margin-bottom: 10px !important;
    }
    
    .feature p {
        font-size: 0.9rem !important;
    }
    
    .rules h2 {
        font-size: 1.5rem !important;
        margin-bottom: 10px !important;
    }
    
    .rules p {
        font-size: 0.9rem !important;
        margin-bottom: 15px !important;
    }
    
    .next-raid-info h3 {
        font-size: 1rem !important;
        margin-bottom: 8px !important;
    }
    
    .countdown {
        gap: 8px !important;
        margin-bottom: 15px !important;
    }
    
    .countdown-item {
        padding: 4px !important;
        min-width: 40px !important;
    }
    
    .countdown-item span {
        font-size: 1rem !important;
    }
    
    .countdown-item label {
        font-size: 0.6rem !important;
    }
    
    .discord-button {
        padding: 8px 20px !important;
        font-size: 0.9rem !important;
    }
}

/* Responsive styles for new sections */
@media (min-width: 1200px) and (max-width: 1900px) {
    .how-to-join-content h2 {
        font-size: 3rem;
        margin-bottom: 40px;
    }
    
    .steps-grid {
        gap: 30px;
    }
    
    .step-item {
        padding: 25px 15px;
    }
    
    .step-item h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .step-item p {
        font-size: 0.95rem;
    }
    
    .icon-placeholder {
        width: 450px;
        height: 450px;
    }
}

@media (min-width: 1901px) {
    .how-to-join-content h2 {
        font-size: 2.8rem;
        margin-bottom: 35px;
    }
    
    .steps-grid {
        gap: 25px;
    }
    
    .step-item {
        padding: 20px 15px;
    }
    
    .step-item h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .step-item p {
        font-size: 0.9rem;
    }
    
    .icon-placeholder {
        width: 400px;
        height: 400px;
    }
}
