/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: white;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 50px;
    position: relative;
    z-index: 100;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.7;
}

.hero-content {
    text-align: center;
    padding: 0 50px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 50px;
    opacity: 0.9;
    letter-spacing: 1px;
}

.cta-section {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.cta-button {
    padding: 18px 35px;
    border: 2px solid white;
    background: transparent;
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-block;
}

.cta-button.primary:hover {
    background: white;
    color: #667eea;
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
    text-align: center;
    padding-bottom: 40px;
    animation: bounce 2s infinite;
}

.scroll-text {
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    opacity: 0.7;
}

.scroll-arrow {
    font-size: 1.5rem;
    opacity: 0.7;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Attention Grabber Section */
.attention-grabber {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
}

.attention-content {
    text-align: center;
    position: relative;
}

.decorative-line {
    width: 100px;
    height: 2px;
    background: #667eea;
    margin: 0 auto 30px;
}

.attention-content .decorative-line:last-child {
    margin: 30px auto 0;
}

.attention-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    line-height: 1.3;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

/* Gallery Section */
.gallery-section {
    padding: 120px 0;
    background: white;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 80px;
    color: #333;
    letter-spacing: 2px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #667eea;
}

/* Carousel Styles */
.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.carousel-slide {
    display: none;
    width: 100%;
    height: 500px;
    position: relative;
}

.carousel-slide.active {
    display: block;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 40px 30px 30px;
    border-radius: 0 0 15px 15px;
    text-align: left;
}

.carousel-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.carousel-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
    font-weight: 300;
}

.carousel-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    color: #667eea;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-btn:hover {
    background: white;
    transform: scale(1.1);
}

.carousel-dots {
    text-align: center;
    margin-top: 30px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #ddd;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active,
.dot:hover {
    background-color: #667eea;
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-text {
    padding-right: 40px;
}

.intro-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 30px;
    font-style: italic;
}

.about-description p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.philosophy-box {
    background: white;
    padding: 40px;
    margin: 40px 0;
    border-left: 5px solid #667eea;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.philosophy-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.philosophy-box blockquote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    position: relative;
    padding-left: 30px;
}

.philosophy-box blockquote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: #667eea;
    font-family: 'Playfair Display', serif;
}

.stats-showcase {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 40px;
    margin: 40px 0;
    border-radius: 15px;
    color: white;
    text-align: center;
}

.stats-showcase h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.credentials {
    background: white;
    padding: 40px;
    margin: 40px 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.credentials h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #333;
}

.credentials ul {
    list-style: none;
    padding: 0;
}

.credentials li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.credentials li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.closing-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    border-top: 2px solid #667eea;
    padding-top: 30px;
    margin-top: 40px;
}

.about-image {
    position: sticky;
    top: 120px;
}

.profile-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border: 3px dashed #667eea;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.profile-placeholder .placeholder-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.7;
}

.profile-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.profile-placeholder small {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

/* Fantasy Roster Section */
.fantasy-roster-section {
    padding: 120px 0;
    background: #f8f9fa;
}

.roster-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.starting-lineup h3,
.bench-players h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
    border-bottom: 3px solid #667eea;
    padding-bottom: 15px;
}

.roster-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.roster-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roster-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.position {
    font-weight: 700;
    color: #667eea;
    font-size: 0.9rem;
    letter-spacing: 1px;
    background: rgba(102, 126, 234, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
    min-width: 50px;
    text-align: center;
}

.player-name {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.bench-players {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.bench-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.bench-item {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #dee2e6;
    transition: border-color 0.3s ease;
}

.bench-item:hover {
    border-left-color: #667eea;
}

.bench-item .player-name {
    font-size: 1rem;
    font-weight: 500;
    color: #555;
}

/* Social Proof Section */
.social-proof-section {
    padding: 120px 0;
    background: white;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.social-platform {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.social-platform:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

.platform-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.social-platform h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.follower-count {
    font-size: 1.1rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 15px;
}

.social-platform p:last-child {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 40px;
}

.footer-brand h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.footer-brand p {
    opacity: 0.9;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-stats {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-stats span {
    margin: 0 5px;
}

.footer-right {
    text-align: right;
}

.social-links {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.contact-info p {
    margin: 5px 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

.social-link {
    color: white;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.social-link:hover {
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #555;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .attention-text {
        font-size: 2rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .cta-section {
        flex-direction: column;
        align-items: center;
    }
    
    .navbar {
        padding: 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .social-platform {
        padding: 30px 20px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-right {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .carousel-navigation {
        padding: 0 10px;
    }
    
    .roster-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .roster-item {
        padding: 15px 20px;
    }
    
    .player-name {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .platform-icon {
        font-size: 2.5rem;
    }
    
    .carousel-slide {
        height: 400px;
    }
}