:root {
    --bg-color: #000000;
    --text-primary: #ededed;
    --text-secondary: #999999;
    --accent: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Smoke Effect */
.smoke-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: 1;
    mix-blend-mode: screen;
}

.smoke-layer {
    position: absolute;
    width: 150vw;
    height: 150vh;
    top: -25vh;
    left: -25vw;
    background: 
        radial-gradient(circle at 10% 20%, rgba(200, 200, 200, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 80% 40%, rgba(200, 200, 200, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 70%, rgba(200, 200, 200, 0.1) 0%, transparent 60%);
    filter: blur(40px);
    animation: drift linear infinite;
}

.smoke-1 { animation-duration: 35s; opacity: 1; }
.smoke-2 { 
    animation-duration: 45s; 
    animation-direction: reverse; 
    opacity: 0.9; 
    background: 
        radial-gradient(circle at 70% 80%, rgba(200, 200, 200, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 30% 30%, rgba(220, 220, 220, 0.08) 0%, transparent 50%);
}
.smoke-3 { 
    animation-duration: 55s; 
    transform: scale(1.1); 
    opacity: 0.8; 
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

@keyframes drift {
    0% { transform: rotate(0deg) translate(5%, 5%); }
    25% { transform: rotate(90deg) translate(-5%, 5%); }
    50% { transform: rotate(180deg) translate(-5%, -5%); }
    75% { transform: rotate(270deg) translate(5%, -5%); }
    100% { transform: rotate(360deg) translate(5%, 5%); }
}

/* Typography and Layout */
.content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
    width: 100%;
    padding: 2rem 0;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero {
    min-height: 100vh;
    position: relative;
}

.title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 300;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    background: linear-gradient(180deg, #ffffff 0%, #a0a0a0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    font-size: 1.2rem;
    opacity: 0.4;
    animation: bounce 2s infinite ease-in-out;
    font-weight: 300;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.photo-section {
    min-height: auto;
    padding: 1rem 0;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 2px;
    filter: grayscale(85%) contrast(1.1) brightness(0.9);
    transition: filter 0.8s ease;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

.hero-image:hover {
    filter: grayscale(20%) contrast(1.05) brightness(1);
}

.text-block {
    max-width: 550px;
    min-height: auto;
    margin: 6vh 0;
}

.text-block h2 {
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    color: #666;
    position: relative;
}

.text-block h2::after {
    content: '';
    display: block;
    width: 30px;
    height: 1px;
    background: #444;
    margin: 1rem auto 0;
}

.text-block p {
    font-size: 1.35rem;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 1.8rem;
}

p.highlight {
    color: var(--text-primary);
    font-weight: 400;
    font-style: italic;
    margin-top: 3rem;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    padding: 2rem 1rem;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
}

.fee-info {
    background: rgba(255,255,255,0.02);
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 2px;
    margin-top: 3rem;
}

.fee-info strong {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text-primary);
}

.fee-detail {
    font-size: 1.1rem;
    color: #777;
    display: block;
    margin-top: 1.5rem;
}

.apply-btn {
    display: inline-block;
    margin-top: 4rem;
    padding: 1.2rem 3.5rem;
    border: 1px solid #444;
    color: var(--text-primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    background: transparent;
    cursor: pointer;
}

.apply-btn:hover {
    background: var(--text-primary);
    color: var(--bg-color);
    border-color: var(--text-primary);
}

.last-section {
    margin-bottom: 20vh;
}
