body {
    font-family: 'Bellota Text', sans-serif;
    background: linear-gradient(135deg, #4b0082, #6a1b9a);
    background-image: url('/static/img/background.png');
    background-size: cover;
    color: #fff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, .navbar-brand, .hero h1, .hero .welcome-text {
    font-family: 'Tektur', sans-serif;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.navbar {
    background: rgba(0, 0, 0, 0.8);
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
    font-size: 1.8em;
    color: #d8bfd8;
    text-decoration: none;
    text-shadow: 0 0 10px #9932cc;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 16px;
    margin: 0;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.94em;
    transition: color 0.3s, text-shadow 0.3s;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid transparent;
    background-clip: padding-box, border-box;
    background-image: linear-gradient(rgba(0, 0, 0, 0.63), rgba(0, 0, 0, 0.63)), linear-gradient(to right, #9932cc, #ba55d3);
    backdrop-filter: blur(5px);
    width: 110px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.nav-links li a:hover {
    color: #d8bfd8;
    text-shadow: 0 0 10px #9932cc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.hero {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 30px;
    box-shadow: 0 0 20px rgba(186, 85, 211, 0.3);
    max-width: 800px;
    width: 70%;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: subtle-pulse 2s infinite ease-in-out;
}

.hero img {
    max-width: 100%;
    height: auto;
}

.hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(186, 85, 211, 0.5);
}

.hero .welcome-text {
    display: block;
    margin: 0 auto 15px;
    font-size: 3em;
    color: #d8bfd8;
    text-shadow: 0 0 5px #9932cc, 0 0 10px #9932cc, 0 0 20px #9932cc, 0 0 30px #ba55d3, 0 0 40px #ba55d3;
    background: linear-gradient(135deg, #9932cc, #ba55d3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
    max-width: 100%;
    padding: 0;
}

.hero .welcome-text:hover {
    transform: scale(1.05);
    text-shadow: 0 0 7px #9932cc, 0 0 15px #9932cc, 0 0 25px #9932cc, 0 0 40px #ba55d3, 0 0 50px #ba55d3;
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    text-shadow: 0 0 15px #9932cc;
}

.hero p {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 10px;
    color: #fff;
    transition: .2s linear;
    background: linear-gradient(to right, #9932cc, #ba55d3);
    text-decoration: none;
    font-size: 0.94em;
    overflow: hidden;
    position: relative;
}

.btn:hover {
    box-shadow: 0 0 0 2px #d8bfd8, 0 0 0 4px #ba55d3;
}

.btn:active {
    transform: scale(0.95);
    box-shadow: 0 0 30px #ba55d3;
    animation: button-press 0.2s ease-in-out;
}

.btn:after {
    content: "";
    display: block;
    width: 30px;
    height: 200px;
    margin-left: 60px;
    background: linear-gradient(90deg, rgba(216, 191, 216, 0), rgba(216, 191, 216, 0.5), rgba(216, 191, 216, 0));
    opacity: 0.6;
    position: absolute;
    left: -40px;
    top: -100px;
    z-index: 1;
    transform: rotate(45deg);
    transition: all 0.1s;
    animation-name: slideme;
    animation-duration: 3s;
    animation-delay: 0.05s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.leaderboard {
    margin-top: 40px;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 15px;
}

.leaderboard ul {
    list-style: none;
    padding: 0;
}

.leaderboard li {
    padding: 10px;
    font-size: 1.2em;
    border-bottom: 1px solid rgba(186, 85, 211, 0.3);
    color: #d8bfd8;
    text-shadow: 0 0 5px #9932cc;
}

.slots-container {
    text-align: center;
    padding: 40px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.slots-container h1 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #9932cc;
}

.slots-container p {
    font-size: 1.5em;
    margin-bottom: 30px;
}

.slot-machine {
    display: flex;
    justify-content: center;
    margin: 30px 0;
    perspective: 1000px;
}

.slot-reel {
    width: 120px;
    height: 120px;
    overflow: hidden;
    border: 3px solid #d8bfd8;
    border-radius: 15px;
    margin: 0 15px;
    background: #000;
    box-shadow: 0 0 15px rgba(216, 191, 216, 0.5);
    transform-style: preserve-3d;
}

.reel {
    display: flex;
    flex-direction: column;
    will-change: transform;
    transition: filter 0.3s ease-out;
}

.slot {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    background: linear-gradient(180deg, #fff, #eee);
    border-bottom: 1px solid #ccc;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.2);
}

.bet-form {
    margin: 30px 0;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.bet-input {
    padding: 12px;
    font-size: 14px;
    border: 2px solid #d8bfd8;
    border-radius: 10px;
    background: linear-gradient(to right, #9932cc, #ba55d3);
    color: #fff;
    width: 80px;
    transition: .2s linear;
    position: relative;
    overflow: hidden;
}

.bet-input::-webkit-inner-spin-button,
.bet-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.bet-input[type="number"] {
    -moz-appearance: textfield;
}

.bet-input::placeholder {
    color: #d8bfd8;
    opacity: 0.7;
}

.bet-input:hover {
    box-shadow: 0 0 0 2px #d8bfd8, 0 0 0 4px #ba55d3;
}

.bet-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #d8bfd8, 0 0 0 4px #ba55d3;
    transform: scale(1.02);
}

.bet-input:after {
    content: "";
    display: block;
    width: 30px;
    height: 200px;
    margin-left: 60px;
    background: linear-gradient(90deg, rgba(216, 191, 216, 0), rgba(216, 191, 216, 0.5), rgba(216, 191, 216, 0));
    opacity: 0.6;
    position: absolute;
    left: -40px;
    top: -100px;
    z-index: 1;
    transform: rotate(45deg);
    transition: all 0.1s;
    animation-name: slideme;
    animation-duration: 3s;
    animation-delay: 0.05s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.nickname-form {
    margin: 30px 0;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.nickname-input {
    padding: 12px;
    font-size: 14px;
    border: 2px solid #d8bfd8;
    border-radius: 10px;
    background: linear-gradient(to right, #9932cc, #ba55d3);
    color: #fff;
    width: 160px;
    transition: .2s linear;
    position: relative;
    overflow: hidden;
}

.nickname-input::placeholder {
    color: #d8bfd8;
    opacity: 0.7;
}

.nickname-input:hover {
    box-shadow: 0 0 0 2px #d8bfd8, 0 0 0 4px #ba55d3;
}

.nickname-input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #d8bfd8, 0 0 0 4px #ba55d3;
    transform: scale(1.02);
}

.nickname-input:after {
    content: "";
    display: block;
    width: 30px;
    height: 200px;
    margin-left: 60px;
    background: linear-gradient(90deg, rgba(216, 191, 216, 0), rgba(216, 191, 216, 0.5), rgba(216, 191, 216, 0));
    opacity: 0.6;
    position: absolute;
    left: -40px;
    top: -100px;
    z-index: 1;
    transform: rotate(45deg);
    transition: all 0.1s;
    animation-name: slideme;
    animation-duration: 3s;
    animation-delay: 0.05s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

button {
    padding: 12px 24px;
    font-size: 14px;
    border-radius: 10px;
    color: #fff;
    transition: .2s linear;
    background: linear-gradient(to right, #9932cc, #ba55d3);
    border: none;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

button:hover {
    box-shadow: 0 0 0 2px #d8bfd8, 0 0 0 4px #ba55d3;
}

button:active {
    transform: scale(0.95);
    box-shadow: 0 0 30px #ba55d3;
    animation: button-press 0.2s ease-in-out;
}

button:after {
    content: "";
    display: block;
    width: 30px;
    height: 200px;
    margin-left: 60px;
    background: linear-gradient(90deg, rgba(216, 191, 216, 0), rgba(216, 191, 216, 0.5), rgba(216, 191, 216, 0));
    opacity: 0.6;
    position: absolute;
    left: -40px;
    top: -100px;
    z-index: 1;
    transform: rotate(45deg);
    transition: all 0.1s;
    animation-name: slideme;
    animation-duration: 3s;
    animation-delay: 0.05s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.chest-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.chest {
    font-size: 60px;
    cursor: pointer;
    transition: transform 0.3s;
}

.chest:hover {
    transform: scale(1.1);
}

.combinations {
    margin-top: 0;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 5px;
    opacity: 0;
    transition: all 0.5s ease;
    max-width: 2000px;
    width: 90%;
    position: relative;
}

.combinations ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.combinations li {
    flex: 0 1 150px;
    padding: 12px;
    background: linear-gradient(to right, #9932cc, #ba55d3);
    border-radius: 10px;
    box-shadow: 0 0 10px #ba55d3;
    transition: transform 0.3s;
    text-align: center;
    font-size: 0.9em;
}

.combinations li:hover {
    transform: translateY(-5px);
}

#result {
    font-size: 1.5em;
    margin-top: 20px;
    color: #d8bfd8;
    text-shadow: 0 0 5px #9932cc;
}

.spinning .reel {
    filter: blur(2px);
}

@keyframes win-glow {
    0% { box-shadow: 0 0 10px #d8bfd8; }
    50% { box-shadow: 0 0 20px #9932cc; }
    100% { box-shadow: 0 0 10px #d8bfd8; }
}

.win {
    animation: win-glow 1s infinite;
}

@keyframes subtle-pulse {
    0% { box-shadow: 0 0 20px rgba(186, 85, 211, 0.3); }
    50% { box-shadow: 0 0 25px rgba(186, 85, 211, 0.4); }
    100% { box-shadow: 0 0 20px rgba(186, 85, 211, 0.3); }
}

@keyframes button-press {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(0.95); opacity: 0.8; box-shadow: 0 0 40px #ba55d3; }
    100% { transform: scale(1); opacity: 1; box-shadow: 0 0 10px #9932cc; }
}

@keyframes slideme {
    0% {
        left: -30px;
        margin-left: 0px;
    }
    30% {
        left: 110%;
        margin-left: 80px;
    }
    100% {
        left: 110%;
        margin-left: 80px;
    }
}

.toplayer {
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

#open-combinations {
    background: linear-gradient(to right, #9932cc, #ba55d3);
    width: 160px;
    height: 39px;
    border: none;
    color: #fff;
    border-radius: 10px;
    font-family: 'Bellota Text', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    outline: none;
    cursor: pointer;
    transition: .2s linear;
    overflow: hidden;
    position: relative;
}

#open-combinations:hover {
    box-shadow: 0 0 0 2px #d8bfd8, 0 0 0 4px #ba55d3;
}

.layer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    z-index: -1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: transparent;
    opacity: 0;
    transform: scale(0.1);
    transition: all 0.5s ease;
    padding-bottom: 20px;
    pointer-events: none;
}

.layer > * {
    margin: 3px;
    pointer-events: auto;
}

#close-layer {
    position: relative;
    color: #d8bfd8;
    cursor: pointer;
    font-size: 36px;
    text-shadow: 0 0 5px #9932cc;
    margin-bottom: 10px;
}

.clicked {
    transition: all 0.5s ease;
    transform: scale(1);
    z-index: 100;
    opacity: 1;
}

.clicked .combinations {
    opacity: 1;
}

.wallet-container {
    text-align: center;
    padding: 40px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.wallet-container h1, .wallet-container h2 {
    text-shadow: 0 0 10px #9932cc;
}

.wallet-container form {
    margin: 20px 0;
}

.wallet-container input[type="number"] {
    padding: 10px;
    font-size: 16px;
    border: 2px solid #d8bfd8;
    border-radius: 10px;
    background: linear-gradient(to right, #9932cc, #ba55d3);
    color: #fff;
    width: 150px;
    margin: 10px;
}

.wallet-container table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.wallet-container th, .wallet-container td {
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.wallet-container th {
    background: rgba(153, 50, 204, 0.5);
}

.wallet-container .withdraw-column label {
    display: block;
}

.profile-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.profile-card {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 30px;
    box-shadow: 0 0 20px rgba(186, 85, 211, 0.3);
    max-width: 600px;
    margin: 0 auto 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: subtle-pulse 2s infinite ease-in-out;
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(186, 85, 211, 0.5);
}

.profile-card h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
    text-shadow: 0 0 10px #9932cc;
}

.profile-card p {
    font-size: 1.3em;
    margin: 10px 0;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #ff69b4;
    box-shadow: 0 0 10px #ff00ff;
    margin-bottom: 15px;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
}

.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    padding: 20px 0;
    gap: 10px;
    animation: slideIn 0.3s ease;
    z-index: 1000;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    padding: 10px;
    font-size: small;
    color: #aaa;
    background-color: rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    body {
        background-image: url('/static/img/mobile_background.png');
        background-size: cover;
    }

    .navbar {
        padding: 12px 16px;
    }

    .navbar-brand {
        font-size: 1.5em;
    }

    .hamburger {
        display: flex;
        width: 35px;
        height: 30px;
    }

    .hamburger span {
        height: 4px;
    }

    .nav-links {
        display: none;
    }

    .nav-links li a {
        width: auto;
        padding: 10px 20px;
        border-radius: 0;
        justify-content: flex-start;
    }

    .container {
        padding: 20px 10px;
        max-width: 100%;
    }

    .hero {
        width: 90%;
        padding: 10px;
        border-radius: 20px;
    }

    .hero .welcome-text {
        font-size: 2.2em;
    }

    .hero h1 {
        font-size: 2.5em;
    }

    .hero p {
        font-size: 1.2em;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .leaderboard {
        margin-top: 20px;
        padding: 15px;
        background: rgba(0, 0, 0, 0.7);
    }

    .leaderboard li {
        font-size: 1em;
        color: #d8bfd8;
        text-shadow: 0 0 5px #9932cc;
        border-bottom: 1px solid rgba(186, 85, 211, 0.3);
    }

    .slots-container {
        padding: 20px;
    }

    .slots-container h1 {
        font-size: 2em;
    }

    .slots-container p {
        font-size: 1.2em;
    }

    .slot-machine {
        margin: 20px 0;
    }

    .slot-reel {
        width: 100px;
        height: 100px;
        margin: 0 10px;
    }

    .slot {
        width: 100px;
        height: 100px;
        font-size: 50px;
    }

    .bet-form {
        margin: 20px 0;
    }

    .bet-input {
        width: 60px;
        font-size: 12px;
    }

    button {
        padding: 10px 20px;
        font-size: 12px;
    }

    .chest-container {
        gap: 10px;
    }

    .chest {
        font-size: 50px;
    }

    .combinations ul {
        flex-direction: column;
        gap: 5px;
    }

    .combinations li {
        flex: 1;
        font-size: 0.8em;
        padding: 10px;
    }

    #result {
        font-size: 1.2em;
    }

    .toplayer {
        margin-top: 20px;
    }

    .open-combinations {
        width: 140px;
        height: 35px;
        font-size: 12px;
    }

    .layer {
        padding-bottom: 10px;
    }

    #close-layer {
        font-size: 30px;
    }

    .wallet-container {
        padding: 20px;
    }

    .wallet-container input[type="number"] {
        width: 120px;
        font-size: 14px;
    }

    .profile-card {
        padding: 15px;
        max-width: 90%;
    }

    .profile-card h1 {
        font-size: 2em;
    }

    .profile-card p {
        font-size: 1.1em;
    }

    .profile-avatar {
        width: 80px;
        height: 80px;
    }

    footer {
        font-size: x-small;
        white-space: normal;
        word-wrap: break-word;
        text-align: center;
        padding: 5px;
    }

    footer p {
        margin: 0;
    }

    .developers {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 80%;
        max-width: 250px;
        padding: 15px;
    }

    .avatar {
        width: 70px;
        height: 70px;
    }

    .card h3 {
        font-size: 1.2em;
    }

    .card p {
        font-size: 0.85em;
    }

    .discord-panel {
        padding: 15px;
        margin: 15px 0;
    }

    .discord-link {
        font-size: 1.3em;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    .navbar-brand {
        font-size: 1.2em;
    }

    .navbar-brand img {
        width: 40px;
    }

    .hero {
        width: 95%;
        padding: 10px;
    }

    .hero .welcome-text {
        font-size: 1.8em;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1em;
    }

    .btn {
        padding: 8px 16px;
        font-size: 0.8em;
    }

    .leaderboard {
        background: rgba(0, 0, 0, 0.7);
    }

    .leaderboard li {
        font-size: 0.9em;
        color: #d8bfd8;
        text-shadow: 0 0 5px #9932cc;
        border-bottom: 1px solid rgba(186, 85, 211, 0.3);
    }

    .slots-container h1 {
        font-size: 1.5em;
    }

    .slots-container p {
        font-size: 1em;
    }

    .slot-reel {
        width: 80px;
        height: 80px;
        margin: 0 5px;
    }

    .slot {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }

    .bet-input {
        width: 50px;
    }

    .chest {
        font-size: 40px;
    }

    .combinations li {
        font-size: 0.7em;
    }

    #result {
        font-size: 1em;
    }

    #open-combinations {
        width: 120px;
        height: 30px;
        font-size: 10px;
    }

    .profile-card h1 {
        font-size: 1.5em;
    }

    .profile-card p {
        font-size: 1em;
    }

    .profile-avatar {
        width: 60px;
        height: 60px;
    }

    .card {
        width: 90%;
        padding: 10px;
    }

    .avatar {
        width: 60px;
        height: 60px;
    }

    .card h3 {
        font-size: 1.1em;
    }

    .card p {
        font-size: 0.8em;
    }

    .discord-link {
        font-size: 1.2em;
        padding: 6px 12px;
    }
}

@media (max-width: 600px) {
    .slot-reel {
        width: 90px;
        height: 90px;
    }
    .slot {
        width: 90px;
        height: 90px;
        font-size: 45px;
    }
    .slots-container h1 {
        font-size: 2em;
    }
    .hero h1 {
        font-size: 2.5em;
    }
    .nickname-input, .bet-input, button {
        font-size: 16px;
        padding: 10px;
    }
    .combinations li {
        font-size: 14px;
    }
    .hero .welcome-text {
        font-size: 2em;
    }
    .hero p {
        font-size: 1.5em;
    }
    .layer {
        max-height: 40vh;
    }
    .nickname-input {
        width: 150px;
    }
    .bet-input {
        width: 80px;
    }
    .profile-card h1 {
        font-size: 2em;
    }
    .profile-card p {
        font-size: 1.1em;
    }
}

.privacy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: left;
    color: #fff;
}

.privacy-container h1 {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 10px #9932cc;
}

.section-block {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(186, 85, 211, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(186, 85, 211, 0.5);
}

.section-block h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #d8bfd8;
    text-shadow: 0 0 5px #9932cc;
}

.section-block p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.section-block ol {
    list-style-type: decimal;
    padding-left: 20px;
}

.section-block ul {
    list-style-type: disc;
    padding-left: 20px;
}

.section-block li {
    margin-bottom: 10px;
}