/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    font-family: 'Comic Sans MS', cursive;
    color: white;
    position: relative;
    overflow-x: hidden;
    background: url('../images/bg.png') no-repeat center center fixed;
    background-size: cover;
}

/* Header styles */
header {
    width: 100%;
    padding: 1rem;
    position: relative;
    z-index: 1;
}

.header-container {
    max-width: 72rem;
    margin: 0 auto;
    background: rgba(233, 30, 99, 0.9);
    backdrop-filter: blur(8px);
    border-radius: 1.5rem;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.header-links {
    display: flex;
    gap: 1rem;
}

.header-links a {
    color: white;
    text-decoration: none;
    font-size: clamp(1rem, 3vw, 1.25rem);
    font-weight: bold;
    transition: opacity 0.3s;
    padding: 0.5rem;
}

.header-links a:hover {
    opacity: 0.8;
}

/* Main content styles */
main {
    flex: 1;
    padding: 1rem;
    position: relative;
    z-index: 1;
}

.main-container {
    max-width: 72rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 1rem;
}

.baby-zeus-image {
    width: min(100%, 400px);
}

.baby-zeus-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.content-right {
    flex: 1;
    min-width: 300px;
}

.speech-bubble {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 1.5rem;
    padding: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
    max-width: 600px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.speech-bubble::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 15px solid transparent;
    border-right: 30px solid rgba(255, 255, 255, 0.95);
    border-bottom: 15px solid transparent;
}

.bubble-text {
    color: black;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    line-height: 1.2;
}

.contract-address {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: bold;
    word-break: break-all;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Video Section */
.video-section {
    width: 100%;
    padding: 2rem 1rem;
    position: relative;
    z-index: 1;
}

.video-container {
    max-width: 72rem;
    margin: 0 auto;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.video-container video {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* Zeusanomics section styles */
.zeusanomics {
    width: 100%;
    padding: 2rem 1rem;
    position: relative;
    z-index: 1;
}

.zeusanomics h2 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.zeusanomics-container {
    max-width: 72rem;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 1rem;
}

.zeusanomics-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: scale(1);
    transition: transform 0.3s;
    width: min(100%, 300px);
}

.info-box:hover {
    transform: scale(1.05);
}

.box-text {
    color: black;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    text-align: center;
}

.zeusanomics-right {
    width: min(100%, 400px);
    height: auto;
    aspect-ratio: 1;
}

.zeusanomics-right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* About section styles */
.about {
    width: 100%;
    padding: 2rem 1rem;
    position: relative;
    z-index: 1;
}

.about h2 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-text {
    max-width: 48rem;
    margin: 0 auto 4rem;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Banner Image */
.banner-image {
    max-width: min(100%, 1500px);
    height: min(50vw, 500px);
    margin: 0 auto 3rem;
    overflow: hidden;
    border-radius: 1rem;
    padding: 0 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Social Grid */
.social-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: clamp(1rem, 3vw, 2rem);
    padding: 0 1rem;
    justify-items: center;
}

.social-grid a {
    display: block;
    width: clamp(120px, 20vw, 150px);
    height: clamp(120px, 20vw, 150px);
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-grid a:hover {
    transform: translateY(-5px);
}

.social-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}