* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: #0c1417;
    color: #e0d1b3;
    line-height: 1.6;
}

.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    font-family: 'Lato', sans-serif;
}

.header-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; 
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0.5rem 1rem;
    background-color: rgba(0, 0, 0, 0.7);
    font-size: 0.8rem;
    text-transform: uppercase;
}

.header-left {
    margin-right: auto; 
    color: #ccc;
    padding-left: 1rem;
}

.header-links a {
    color: #f0e6d6;
    text-decoration: none;
    margin-left: 1.5rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.social-icons {
    display: flex;
    align-items: center;
    margin-right: 1.5rem; 
}

.social-icons a {
    color: #f0e6d6;
    font-size: 1.1rem; 
    margin-left: 0.8rem; 
    opacity: 0.8;
}

.header-right .btn-connect {
    background: #444;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #f0e6d6;
    border-radius: 2px 0 0 2px; 
    white-space: nowrap; 
}

.header-right .btn-getnow {
    background: #f0e6d6;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #0c1417;
    font-weight: bold;
    border-radius: 0 2px 2px 0;
    margin-left: 2px; 
    white-space: nowrap;
}

.sub-nav {
    margin-top: 2.8rem;
    display: flex;
    justify-content: center;
    width: 100%;
    background: url('https://i.imgur.com/rN5x40J.png') repeat-x top center; 
    background-size: 100% auto; 
    padding: 1.5rem 0 1rem 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1); 
}

.sub-nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    max-width: 600px;
    width: 100%;
}

.sub-nav a {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: #f0e6d6;
    text-decoration: none;
    padding: 0 1rem;
    transition: color 0.3s;
}

.sub-nav a:hover {
    color: #ffcc66;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 2rem;
    padding-top: 8rem; 
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(12, 20, 23, 0.7), rgba(0, 0, 0, 0.2));
    z-index: 0;
}

.corner-img {
    position: absolute;
    width: 250px;
    height: auto;
    z-index: 2;
    opacity: 0.5;
    pointer-events: none;
}

.corner-left { top: 0; left: 0; }
.corner-right { top: 0; right: 0; }

.accolades {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 20%;
    max-width: 250px;
}

.accolades img {
    width: 100%;
    height: auto;
    display: block;
}

.accolades-left { left: 4vw; } 
.accolades-right { right: 4vw; }

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 2rem;
}

.hero-content .logo {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin-bottom: 1.5rem;
}

.hero-content .platforms {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #c9b89a;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.hero-content .cta-button {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    background-color: #0a84ff;
    padding: 1rem 3rem;
    border-radius: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid #0a84ff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.hero-content .cta-button:hover {
    background-color: #006adc;
    border-color: #006adc;
    box-shadow: 0 0 20px rgba(10, 132, 255, 0.7);
}

.trailer-section {
    background-color: #0c1417; 
    padding: 4rem 2rem; 
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 2px solid rgba(164, 140, 106, 0.3);
}

.hero-trailer {
    width: 100%;
    max-width: 1100px; 
    height: auto;
    border: 2px solid #a48c6a; 
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.intro-section {
    background-color: #0c1417;
    padding: 4rem 2rem;
    text-align: center;
}

.intro-text-box {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    font-size: 1.1rem;
    color: #c9b89a;
}

.live-unwritten-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #f0e6d6;
    letter-spacing: 3px;
    margin-bottom: 3rem;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
}

.feature-cards-container {
    display: flex;
    justify-content: center;
    gap: 2.5rem; 
    flex-wrap: wrap; 
}

.feature-card {
    width: 350px; 
    text-align: center;
}

.card-image-wrapper {
    position: relative;
    background-color: #0f1a24; 
    padding: 10px; 
    margin-bottom: 1.5rem;
    clip-path: polygon(15% 0, 85% 0, 100% 15%, 100% 85%, 85% 100%, 15% 100%, 0 85%, 0 15%);
    box-shadow: 0 0 0 2px #a48c6a; 
}

.card-image-wrapper::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    clip-path: polygon(15% 0, 85% 0, 100% 15%, 100% 85%, 85% 100%, 15% 100%, 0 85%, 0 15%);
    border: 1px solid rgba(200, 160, 99, 0.5); 
    z-index: 1;
    pointer-events: none; 
}

.feature-card img {
    display: block; 
    width: 100%; 
    height: auto;
    clip-path: polygon(15% 0, 85% 0, 100% 15%, 100% 85%, 85% 100%, 15% 100%, 0 85%, 0 15%);
    transition: transform 0.4s ease; 
}

.feature-card:hover .card-image-wrapper img {
    transform: scale(1.05);
}

.feature-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem; 
    color: #ffcc66;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.feature-card p {
    font-size: 0.95rem;
    color: #c9b89a;
    max-width: 320px; 
    margin: 0 auto; 
}

.social-footer {
    padding: 3rem 0 2rem 0;
    background-color: #0c1417;
    text-align: center;
}

.social-icons-large {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    font-size: 2rem; 
}

.social-icons-large a {
    color: #f0e6d6;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.social-icons-large a:hover {
    opacity: 1;
}

.fan-club p {
    font-size: 1rem;
    color: #f0e6d6;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.fan-club a {
    font-size: 0.8rem;
    color: #ffcc66;
    text-decoration: none;
    letter-spacing: 1px;
}

@media (max-width: 1024px) {
    .accolades {
        display: none;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    .header-links, .social-icons {
        display: none; 
    }
    .header-left, .header-right {
        width: 100%;
        margin: 0.5rem 0;
    }
    .header-right {
        display: flex;
        justify-content: center;
    }
    
    .feature-cards-container {
        flex-direction: column;
        align-items: center;
    }
    .feature-card {
        width: 100%;
        max-width: 350px; 
    }
}

.newsletter-section {
    padding: 5rem 2rem;
    background-image: url('Media/magic-background.gif');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-top: 2px solid rgba(164, 140, 106, 0.3);
    border-bottom: 2px solid rgba(164, 140, 106, 0.3);
    color: #f0e6d6;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.newsletter-content {
    position: relative;
    z-index: 2;
}

.newsletter-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 2rem; 
    color: #f0e6d6;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.newsletter-content p {
    font-size: 1rem;
    color: #c9b89a;
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
}

.newsletter-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    flex: 1;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #f0e6d6;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.form-group input[type="text"],
.form-group input[type="email"] {
    width: 100%;
    padding: 0.8rem 1rem;
    background-color: rgba(0, 0, 0, 0.5);
    border: 1px solid #a48c6a;
    border-radius: 4px;
    color: #e0d1b3;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
}

.form-group input::placeholder {
    color: #888;
    opacity: 0.7;
}

.newsletter-form .cta-button {
    background-color: #f0e6d6;
    color: #0c1417;
    font-weight: bold;
    border-color: #f0e6d6;
    margin-top: 1rem;
    cursor: pointer;
}

.newsletter-form .cta-button:hover {
    background-color: #c9b89a;
    border-color: #c9b89a;
    box-shadow: none;
}
.newsletter-section {
    padding: 5rem 2rem;
    background-image: url('Media/giphy.gif'); 
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-top: 2px solid rgba(164, 140, 106, 0.3);
    border-bottom: 2px solid rgba(164, 140, 106, 0.3);
    color: #f0e6d6;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.newsletter-content {
    position: relative;
    z-index: 2;
}