html{
    scroll-behavior: smooth;
}

/* Hide default cursor */
body {
    cursor: none;
    background-color: #000;
}

/* Dot cursor */
.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: #BB8D38;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(187, 141, 56, 0.9);
    transition: transform 0.08s ease-out;
}

/* Hover effect on clickable elements */
a:hover ~ .cursor-dot,
button:hover ~ .cursor-dot,
input:hover ~ .cursor-dot,
textarea:hover ~ .cursor-dot {
    transform: translate(-50%, -50%) scale(1.8);
}

header{
    position: fixed;
    top: 0;
    background-color: #000;
    z-index: 100;
    width: 99%;
}

section{
    width:88%;
    margin: auto;
}

.nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    color: #fff;
    width: 84%;
    border-bottom: 1px solid white;
    text-align: center;
    justify-self: center;
}

.nav-text h2{
    font-size: 2.5rem;
}

.nav-links a{
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.nav-links a:hover{
    color: #BB8D38;
}

.img{
    text-align: center;
}

.img img{
    margin-top: 50px;
    width:300px;
    box-shadow: 0px 0px 13px #BB8D38;
    padding-top: -10px;
}

.hero{
    line-height: 20px;
}

.hero h1{
    color: #BB8D38;
    text-align: center;
    font-size: 5rem;
}

.hero p {
    text-align: center;
    color:#fff;
    opacity: 0.8;
    font-size: 1.5rem;
}

.oracle{
    margin-top: 200px;
}

.oracle h2{
    color:#BB8D38;
    text-align: center;
    font-size: 3rem;
}

.oracle-box{
    border: 2px solid #93794a;
    padding: 20px;
    margin: 20px;
    text-align: center;
    color: #fff;
    box-shadow: 0px 0px 13px #93794a;
    border-radius: 10px;
}

.oracle-box:hover{
    box-shadow: 0px 0px 20px #BB8D38;
    border-color: #BB8D38;
    transform: translateY(-5px);
    transition: all 0.3s ease-in-out;
}

.oracle-box h3{
    font-size: 2rem;
    margin-bottom: 10px;
    opacity: 0.8;
}
.oracle-box p{
    font-size: 1.2rem;
    opacity: 0.7;
}

.oracle h1{
    color:#BB8D38;
    text-align: center;
    font-size: 3rem;
}

.oracle-cont{
    display:flex;
}


/* --- NEW GAMES SECTION STYLES --- */
.download{
    margin-top: 100px;
    margin-bottom: 100px;
    text-align: center;
}

.games-cont {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.game-card {
    border: 2px solid #93794a;
    padding: 20px;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 13px #93794a;
    transition: all 0.3s ease-in-out;
    width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.game-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 15px;
    border: 1px solid rgba(187, 141, 56, 0.3);
}

.game-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin: 0;
    transition: color 0.3s;
}

.game-card:hover {
    box-shadow: 0px 0px 20px #BB8D38;
    border-color: #BB8D38;
    transform: translateY(-5px);
}

.game-card:hover h3 {
    color: #BB8D38;
}
/* -------------------------------- */


.pillar h1{
    font-size: 3rem;
    color:#BB8D38;
    text-align: center;
}

.pillar-box{
    border: 2px solid #93794a;
    padding: 20px;
    margin: 20px;
    text-align: center;
    color: #fff;
    box-shadow: 0px 0px 13px #93794a;
    border-radius: 10px;
    width:300px;
}

.pillar-box:hover{
    box-shadow: 0px 0px 20px #BB8D38;
    border-color: #BB8D38;
    transform: translateY(-5px);
    transition: all 0.3s ease-in-out;
}

.pillar-box p{
    font-size: 1rem;
    opacity: 0.7;
}

.pillar-box h3{
    font-size: 1.5rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.pillar-box h2{
    font-size: 2rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.pillar-cont{
    display:flex;
    justify-content: center;
}

footer{
    border-top: 1px solid white;
    padding: 20px 0;
    text-align: center;
    color: #fff;
    width:88%;
    margin: auto;
    margin-top:50px;
    opacity: 0.7;
}

/* Form Styles */
.contact {
    margin-top: 50px;
    text-align: center;
}

.form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(187, 141, 56, 0.5);
}

.form h1{
    color: #BB8D38;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

label {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 5px;
    align-self: flex-start;
    margin-left: 10%;
}

input[type="text"],
input[type="email"],
textarea {
    width: 80%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #BB8D38;
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 1rem;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

input[type="submit"] {
    width: 80%;
    padding: 10px;
    background-color: #BB8D38;
    color: #000;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

input[type="submit"]:hover {
    background-color: #D4AF37;
}

@media screen and (max-width: 768px) {
    body {
        cursor: auto;
    }
    .cursor-dot {
        display: none;
    }
    .nav {
        flex-direction: column;
        width: 90%;
        padding: 10px;
    }
    .nav-text h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    .nav-links a {
        font-size: 1rem;
        margin: 0 8px;
    }
    .hero h1 {
        font-size: 2.8rem;
        margin-top: 40px;
    }
    .hero p {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    .oracle-cont, .pillar-cont, .games-cont {
        flex-direction: column;
        align-items: center;
    }
    .oracle-box, .pillar-box, .game-card {
        width: 90%;
        margin: 15px 0;
    }
    .download h1 {
        font-size: 2.5rem;
    }
    .form {
        width: 100%;
        padding: 10px;
    }
    input[type="text"], 
    input[type="email"], 
    textarea {
        width: 100%;
        box-sizing: border-box;
    }
    .img img {
        width: 200px;
        margin-top: 100px;
    }
}

@media only screen and (max-width: 500px) {
    .hero h1 {
        font-size: 2.2rem;
        margin-top: 30px;
    }
    .nav-text h2 {
        font-size: 1.5rem;
    }
    .oracle-box, .pillar-box, .game-card {
        width: 95%;
        margin: 10px auto;
        padding: 15px;
    }
    .oracle-box h3, .pillar-box h3 {
        font-size: 1.4rem;
    }
    .form {
        width: 100%;
        padding: 0 10px;
    }
    .form input[type="text"], 
    .form input[type="email"], 
    .form textarea {
        font-size: 16px;
        padding: 12px;
        margin-bottom: 15px;
    }
    input[type="submit"] {
        width: 100%;
        height: 48px;
        font-size: 1.1rem;
    }
    .nav-links a {
        font-size: 0.9rem;
        margin: 0 5px;
    }
}

@media only screen and (max-width: 400px) {
    .nav-text h2 {
        font-size: 1.3rem;
    }
    .nav-links a {
        font-size: 0.8rem;
        margin: 0 4px;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .hero p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    .oracle h2, .pillar h1, .download h1 {
        font-size: 1.8rem;
    }
    .oracle-box h3, .pillar-box h3 {
        font-size: 1.2rem;
    }
    .oracle-box p, .pillar-box p {
        font-size: 0.9rem;
    }
    .img img {
        width: 150px;
        margin-top: 120px;
    }
    .form h1 {
        font-size: 1.5rem;
    }
    input[type="submit"] {
        font-size: 1rem;
        padding: 10px;
    }
}