body {
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #f5f5f5 0%, #e8e8e8 100%);
    min-height: 100vh;
}

/* Top Navigation Bar */
.top-bar {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    background: transparent;
}

.nav-left {
    flex: 1;
}

.nav-buttons {
    display: flex;
    gap: 0;
}

.nav-btn {
    background-color: #a89968;
    border: none;
    border-right: 2px solid #8f7f52;
    padding: 30px 50px;
    font-size: 32px;
    cursor: pointer;
    transition: background-color 0.3s;
    color: #2c2c2c;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-btn:last-child {
    border-right: none;
}

.nav-btn:hover {
    background-color: #8f7f52;
}

/* Logo */
.logo {
    background-color: #000;
    color: white;
    padding: 30px 60px;
    font-size: 48px;
    font-weight: bold;
    letter-spacing: 2px;
    display: inline-block;
}

/* Mega Title */
.mega-title {
    font-size: 72px;
    font-weight: bold;
    text-align: center;
    margin: 40px 20px 20px;
    color: #1a1a1a;
    letter-spacing: -1px;
}

/* Lorem Text */
.lorem-text {
    font-size: 24px;
    color: #4a4a4a;
    line-height: 1.5;
    font-weight: 400;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

/* Wheel Container */
.wheel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.wheel-title {
    font-size: 28px;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 30px;
    text-align: center;
}

/* Samsara Wheel */
.samsara-wheel {
    position: relative;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: #f0e6d2;
    border: 8px solid #8b4513;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}
.realm {
    position: absolute;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    color: #2c2c2c;
    border: 2px solid #8b4513;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.8);
}
.gods {
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
}
.demi-gods {
    top: 150px;
    right: 80px;
}
.humans {
    bottom: 150px;
    right: 80px;
}
.animals {
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}
.ghosts {
    bottom: 150px;
    left: 80px;
}
.hell {
    top: 150px;
    left: 80px;
}

.wheel-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: #fff;
    border: 4px solid #8b4513;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    color: #2c2c2c;
}

/* Tales Section */
.tales-section {
    background: linear-gradient(to right, #8b3a3a 0%, #a84848 100%);
    padding: 40px 60px;
    color: white;
    text-align: center;
    margin-top: 60px;
}

.tales-title {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin: 0 0 10px 0;
}

.tales-subtitle {
    font-size: 24px;
    font-weight: 500;
    margin: 0;
}

/* Responsive design */
@media (max-width: 1024px) {
    .mega-title {
        font-size: 56px;
    }

    .lorem-text {
        font-size: 20px;
    }

    .logo {
        padding: 25px 40px;
        font-size: 36px;
    }

    .nav-btn {
        padding: 25px 35px;
        font-size: 24px;
    }

    .samsara-wheel {
        width: 600px;
        height: 600px;
    }
}

@media (max-width: 768px) {
    .mega-title {
        font-size: 42px;
    }

    .lorem-text {
        font-size: 18px;
    }

    .logo {
        padding: 20px 30px;
        font-size: 28px;
    }

    .nav-btn {
        padding: 20px 25px;
        font-size: 20px;
    }

    .samsara-wheel {
        width: 500px;
        height: 500px;
    }

    .tales-title {
        font-size: 20px;
    }

    .tales-subtitle {
        font-size: 18px;
    }
}
