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

body {
    background-color: #000;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    overflow-x: hidden;
    min-height: 100vh;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.geometric-pattern {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: 
        linear-gradient(45deg, #000 25%, transparent 25%),
        linear-gradient(-45deg, #000 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #000 75%),
        linear-gradient(-45deg, transparent 75%, #000 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    animation: backgroundMove 20s linear infinite;
    opacity: 0.15;
    box-shadow: 0 0 100px rgba(255, 255, 255, 0.1);
}

@keyframes backgroundMove {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
        filter: brightness(0.8);
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg) scale(1.2);
        filter: brightness(1.2);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) scale(1);
        filter: brightness(0.8);
    }
}

.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background: url('texture.jpg') center/cover no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.main-title {
    position: relative;
    z-index: 2;
    font-size: 4.5rem;
    font-weight: 900;
    text-align: center;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: transparent;
    background: linear-gradient(45deg, #fff, #666);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255,255,255,0.1);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: titleAppear 1.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.main-title::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    transform: translate(-50%, -50%) scale(0);
    z-index: -1;
    animation: pulseGlow 2s ease-out infinite;
}

@keyframes pulseGlow {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

@keyframes titleAppear {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
        filter: blur(10px);
    }
    50% {
        opacity: 0.5;
        transform: translateY(-10px) scale(1.05);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: fadeIn 1s ease 1s forwards;
    z-index: 2;
}

.scroll-indicator span {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(45deg);
    animation: bounceAndGlow 2s infinite;
}

@keyframes bounceAndGlow {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
        border-color: rgba(255,255,255,0.6);
    }
    40% {
        transform: translateY(-10px) rotate(45deg);
        border-color: rgba(255,255,255,1);
        box-shadow: 0 0 20px rgba(255,255,255,0.5);
    }
    60% {
        transform: translateY(-5px) rotate(45deg);
        border-color: rgba(255,255,255,0.8);
    }
}

.content-section {
    height: 63vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.content-block {
    max-width: 800px;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, opacity;
    position: relative;
}

.content-block::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    transform: translateX(-50%);
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: 0.3s;
}

/* Remove hover effect */
.content-block[style*="opacity: 1"]::after {
    width: 80%;
}

.content-block h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #fff, #666);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 0.1em;
    position: relative;
}

.content-block:hover h2 {
    text-shadow: 0 0 30px rgba(255,255,255,0.3);
}

.content-block p {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.8;
    color: #999;
    letter-spacing: 0.05em;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Media Queries */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.8rem;
        letter-spacing: 0.1em;
    }

    .content-block h2 {
        font-size: 2.2rem;
    }

    .content-block p {
        font-size: 1rem;
    }
}

/* Quote Section Styles */
.quote-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: rgba(0, 0, 0, 0.8);
}

.quote-container {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.quote-container[style*="opacity: 1"] {
    opacity: 1;
    transform: translateY(0);
}

.image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.man-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(120%);
    transition: transform 0.8s ease;
}

.image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0) 100%
    );
}

.quote-content {
    display: flex;
    align-items: center;
    padding: 2rem;
}

.quote-content blockquote {
    position: relative;
    padding-left: 2rem;
    border-left: 3px solid rgba(255, 255, 255, 0.3);
}

.quote-content p {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #fff;
    letter-spacing: 0.05em;
    text-align: left;
}

.quote-content p:last-child {
    margin-bottom: 0;
}

.quote-attribution {
    margin-top: 2rem;
    text-align: right;
    font-size: 1rem;
    color: #666;
    font-weight: 500;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
}

.quote-attribution .author {
    color: #fff;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.3rem;
}

.quote-attribution .source {
    font-style: italic;
    opacity: 0.7;
}

.quote-attribution:hover {
    color: #fff;
}

/* Media Query for Quote Section */
@media (max-width: 1024px) {
    .quote-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .image-container {
        max-height: 50vh;
    }
}

@media (max-width: 768px) {
    .quote-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* Why Section Styles */
.why-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: rgba(0, 0, 0, 0.9);
}

.why-container {
    max-width: 1000px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-container[style*="opacity: 1"] {
    opacity: 1;
    transform: translateY(0);
}

.why-section h2 {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #fff, #666);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 0.15em;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.why-section h2:hover {
    text-shadow: 0 0 20px rgba(255,255,255,0.2);
    letter-spacing: 0.2em;
}

.why-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    transform: translateX(-50%);
    transition: width 0.4s ease;
}

.why-section h2:hover::after {
    width: 60%;
}

.why-list {
    list-style: none;
    padding: 0;
}

.why-list li {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 2rem;
    padding-left: 2.5rem;
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    padding-right: 1rem;
}

.why-container[style*="opacity: 1"] .why-list li {
    opacity: 1;
    transform: translateX(0);
}

.why-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.5rem;
    height: 2px;
    background: linear-gradient(90deg, #fff, transparent);
    transform: translateY(-50%);
    transition: width 0.3s ease, background 0.3s ease;
}

.why-list li::after {
    content: '→';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0, -50%);
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.why-list li:hover {
    transform: translateX(10px);
    color: #fff;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
    background: linear-gradient(90deg, rgba(255,255,255,0.1), transparent);
    border-radius: 4px;
}

.why-list li:hover::before {
    width: 2rem;
    background: linear-gradient(90deg, #fff, #666);
}

.why-list li:hover::after {
    opacity: 1;
    transform: translate(10px, -50%);
}

.why-list li:nth-child(1) { transition-delay: 0.2s; }
.why-list li:nth-child(2) { transition-delay: 0.4s; }
.why-list li:nth-child(3) { transition-delay: 0.6s; }
.why-list li:nth-child(4) { transition-delay: 0.8s; }
.why-list li:nth-child(5) { transition-delay: 1.0s; }

@media (max-width: 768px) {
    .why-section h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .why-list li {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding-left: 2rem;
    }

    .why-list li::before {
        width: 1.2rem;
    }
}

/* Video Section Styles */
.video-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(120%);
}

.video-content {
    position: relative;
    z-index: 2;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.video-content h2 {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: transparent;
    background: linear-gradient(45deg, #fff, rgba(255,255,255,0.5));
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255,255,255,0.1);
    margin: 0;
    padding: 2rem;
    position: relative;
}

.video-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    transform: translateX(-50%);
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-content.visible h2::after {
    width: 60%;
}

.video-text {
    margin-top: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-content.visible .video-text {
    opacity: 1;
    transform: translateY(0);
}

.video-text p {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.6;
    margin: 0.5rem 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.9), rgba(255,255,255,0.4));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.video-text p:last-child {
    font-size: 2.5rem;
    font-weight: 900;
    margin-top: 1.5rem;
    background: linear-gradient(90deg, #fff, rgba(255,255,255,0.6));
    -webkit-background-clip: text;
    background-clip: text;
    letter-spacing: 0.3em;
}

@media (max-width: 768px) {
    .video-content h2 {
        font-size: 2.5rem;
        letter-spacing: 0.15em;
    }

    .video-text p {
        font-size: 1.2rem;
    }

    .video-text p:last-child {
        font-size: 1.8rem;
        letter-spacing: 0.2em;
    }
}

/* Contact Video Section */
.contact-video-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: #000;
}

.contact-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.contact-video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(120%);
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.3)
    );
    z-index: 2;
}

.contact-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    opacity: 0;
    transition: opacity 1s ease;
}

.contact-content.visible {
    opacity: 1;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 4rem;
    align-items: center;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    position: relative;
    max-width: 600px;
    width: 90%;
}

.contact-links::before {
    content: 'CONNECT WITH US';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    padding: 0.5rem 2rem;
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: rgba(255, 255, 255, 0.8);
}

.twitter-link-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    position: relative;
    width: 100%;
}

.twitter-link-container::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.x-logo {
    font-size: 7rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 30px rgba(255,255,255,0.2);
    cursor: pointer;
    display: block;
    line-height: 1;
    position: relative;
    transition: text-shadow 0.3s ease;
}

.x-logo:hover {
    text-shadow: 0 0 40px rgba(255,255,255,0.5);
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.2rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 400px;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.contact-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-button {
    background: rgba(255, 255, 255, 0.08);
    margin-top: 1rem;
}

.contact-description {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 400px;
}

@media (max-width: 768px) {
    .contact-links {
        padding: 3rem 2rem;
        gap: 2rem;
    }

    .contact-links::before {
        font-size: 0.8rem;
        padding: 0.4rem 1.5rem;
    }

    .x-logo {
        font-size: 5rem;
    }

    .contact-link {
        font-size: 1rem;
        padding: 1rem 2rem;
        letter-spacing: 0.15em;
    }

    .contact-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
} 