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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1f2937;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #f97316, #ec4899);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, #ea580c, #db2777);
}

/* Selection */
::selection {
    background: linear-gradient(to right, #f97316, #ec4899);
    color: white;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Animations */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes pulse-slow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.animate-fade-in {
    animation: fade-in 1s ease-out;
}

.animate-gradient {
    background-size: 200% 200%;
    animation: gradient 3s ease infinite;
}

.animate-pulse-slow {
    animation: pulse-slow 3s ease-in-out infinite;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
    background: transparent;
}

.header.scrolled {
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(249, 115, 22, 0.2);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    letter-spacing: 0.1em;
}

.logo-accent {
    color: #f97316;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #f97316;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover .hamburger {
    background: #f97316;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(17, 24, 39, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(249, 115, 22, 0.2);
    padding: 1rem 1.5rem;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-nav-link {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #f97316;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(17, 24, 39, 0.8), rgba(17, 24, 39, 0.6), rgba(17, 24, 39, 0.8));
    z-index: 10;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background: linear-gradient(to right, rgba(249, 115, 22, 0.1), rgba(236, 72, 153, 0.1));
    animation: pulse 3s ease-in-out infinite;
}

.hero-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #111827, #1f2937, #000);
}

.hero-content {
    position: relative;
    z-index: 20;
    text-align: center;
    padding: 0 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    animation: fade-in 1s ease-out;
}

.hero-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.hero-logo-img {
    width: 6rem;
    height: 6rem;
    object-fit: contain;
    animation: pulse-slow 3s ease-in-out infinite;
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    line-height: 1.1;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.hero-title-accent {
    display: block;
    background: linear-gradient(to right, #f97316, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient 3s ease infinite;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #d1d5db;
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.hero-brand {
    color: #f97316;
    font-weight: bold;
}

.hero-description {
    font-size: 1.125rem;
    color: #9ca3af;
    max-width: 48rem;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    padding-top: 2rem;
}

.hero-elements {
    position: absolute;
    inset: 0;
    z-index: 15;
    pointer-events: none;
}

.hero-element {
    position: absolute;
    animation: pulse 3s ease-in-out infinite;
}

.hero-element-1 {
    top: 25%;
    left: 2.5rem;
    width: 0.5rem;
    height: 5rem;
    background: linear-gradient(to bottom, #f97316, transparent);
}

.hero-element-2 {
    top: 33.33%;
    right: 2.5rem;
    width: 0.5rem;
    height: 4rem;
    background: linear-gradient(to bottom, #ec4899, transparent);
    animation-delay: 1s;
}

.hero-element-3 {
    bottom: 25%;
    left: 5rem;
    width: 4rem;
    height: 0.5rem;
    background: linear-gradient(to right, #f97316, transparent);
    animation-delay: 0.5s;
}

/* Buttons */
.btn {
    padding: 1rem 2rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #f97316, #ec4899);
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ea580c, #db2777);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

.btn-secondary {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-secondary:hover {
    background: white;
    color: #111827;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid #f97316;
    color: #f97316;
    background: transparent;
}

.btn-outline:hover {
    background: #f97316;
    color: white;
}

.btn-outline.btn-pink {
    border-color: #ec4899;
    color: #ec4899;
}

.btn-outline.btn-pink:hover {
    background: #ec4899;
    color: white;
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* Section Styles */
.section-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(236, 72, 153, 0.2));
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.title-accent {
    background: linear-gradient(to right, #f97316, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-divider {
    width: 6rem;
    height: 0.25rem;
    background: linear-gradient(to right, #f97316, #ec4899);
    margin: 0 auto 2rem;
}

.section-description {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 48rem;
    margin: 0 auto;
    line-height: 1.6;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #111827;
    position: relative;
    overflow: hidden;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-subtitle {
    font-size: 1.875rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

.text-accent {
    color: #f97316;
}

.about-paragraph {
    color: #d1d5db;
    line-height: 1.6;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.about-image {
    position: relative;
}

.about-image-container {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #1f2937, #111827);
    border-radius: 0.5rem;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(236, 72, 153, 0.2));
}

.about-brand-img {
    width: 8rem;
    height: 8rem;
    object-fit: contain;
    opacity: 0.8;
    position: relative;
    z-index: 10;
}

/* Apparel Section */
.apparel {
    padding: 5rem 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: #111827;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: scale(1.05);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-btn {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: linear-gradient(to right, #f97316, #ec4899);
    color: white;
    font-weight: bold;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    cursor: pointer;
    opacity: 0;
    transform: translateY(1rem);
    transition: all 0.3s ease;
}

.product-card:hover .product-btn {
    opacity: 1;
    transform: translateY(0);
}

.product-info {
    padding: 1.5rem;
}

.product-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.product-category {
    color: #f97316;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.star {
    color: #fbbf24;
    font-size: 1rem;
}

.rating-value {
    color: #9ca3af;
    font-size: 0.875rem;
}

.product-name {
    color: white;
    font-weight: bold;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.product-card:hover .product-name {
    color: #f97316;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
}

/* Athletes Section */
.athletes {
    padding: 5rem 0;
    background: #111827;
    position: relative;
    overflow: hidden;
}

.athletes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.athlete-card {
    background: #000;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.5s ease;
    position: relative;
}

.athlete-card:hover {
    transform: scale(1.05);
    border: 2px solid rgba(249, 115, 22, 0.5);
}

.athlete-info {
    padding: 1.5rem;
    position: relative;
}

.athlete-sport {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.trophy-icon {
    margin-right: 0.5rem;
}

.sport-name {
    color: #f97316;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.athlete-name {
    color: white;
    font-weight: 900;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.athlete-card:hover .athlete-name {
    color: #f97316;
}

.athlete-achievement {
    color: #9ca3af;
    margin-bottom: 1rem;
}

.athlete-social {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.social-handle {
    display: flex;
    align-items: center;
    color: #6b7280;
    font-size: 0.875rem;
    gap: 0.5rem;
}

.social-icon {
    color: #9ca3af;
    transition: color 0.3s ease;
    flex-shrink: 0;
}

.social-handle:hover .social-icon {
    color: #f97316;
}

.partnership-cta {
    text-align: center;
    background: linear-gradient(to right, #1f2937, #111827);
    border-radius: 0.5rem;
    padding: 3rem;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

.cta-description {
    color: #d1d5db;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

/* Media Section */
.media {
    padding: 5rem 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.featured-video {
    margin-bottom: 4rem;
}

.video-container {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 0.5rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-container:hover {
    transform: scale(1.02);
}

.video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-container:hover img {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    transition: background 0.3s ease;
}

.video-container:hover .video-overlay {
    background: rgba(0, 0, 0, 0.2);
}

.play-button {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(to right, #f97316, #ec4899);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.video-container:hover .play-icon {
    transform: scale(1.1);
}

.video-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.video-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

.video-description {
    color: #d1d5db;
}

.video-duration {
    color: #f97316;
    font-weight: bold;
}

/* Community Section */
.community {
    padding: 5rem 0;
    background: #111827;
    position: relative;
    overflow: hidden;
}

.community-content {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

.subsection-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: white;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
}

.subsection-icon {
    margin-right: 0.75rem;
    font-size: 2rem;
}

.events-list,
.news-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.event-card,
.news-card {
    background: #000;
    border-radius: 0.5rem;
    padding: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.event-card:hover,
.news-card:hover {
    transform: scale(1.02);
    background: #1f2937;
}

.event-header,
.news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.event-type,
.news-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

.event-type {
    color: #f97316;
}

.news-category {
    color: #ec4899;
}

.event-attendees,
.news-date {
    display: flex;
    align-items: center;
    color: #9ca3af;
    font-size: 0.875rem;
}

.attendees-icon {
    margin-right: 0.25rem;
}

.event-title,
.news-title {
    color: white;
    font-weight: bold;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.event-card:hover .event-title {
    color: #f97316;
}

.news-card:hover .news-title {
    color: #ec4899;
}

.event-details {
    display: flex;
    gap: 1rem;
    color: #9ca3af;
    font-size: 0.875rem;
}

.event-detail {
    display: flex;
    align-items: center;
}

.detail-icon {
    margin-right: 0.25rem;
}

.news-excerpt {
    color: #9ca3af;
    line-height: 1.5;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    background: linear-gradient(to right, #1f2937, #111827);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
}

.community-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.community-stats .stat-number.orange {
    color: #f97316;
}

.community-stats .stat-number.pink {
    color: #ec4899;
}

/* Footer */
.footer {
    background: #000;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 4rem 0 2rem;
}

.footer-bg {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(236, 72, 153, 0.1));
}

.footer-content {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
}

.footer-brand {
    max-width: 28rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 1.875rem;
    font-weight: 900;
    color: white;
    letter-spacing: 0.1em;
}

.footer-description {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    color: #9ca3af;
}

.contact-icon {
    margin-right: 0.75rem;
    color: #f97316;
}

.footer-section-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #f97316;
}

.footer-support .footer-link:hover {
    color: #ec4899;
}

.newsletter {
    background: linear-gradient(to right, #111827, #1f2937);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 10;
}

.newsletter-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

.newsletter-description {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 24rem;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: #374151;
    color: white;
    border: 1px solid #4b5563;
    transition: border-color 0.3s ease;
}

.newsletter-input::placeholder {
    color: #9ca3af;
}

.newsletter-input:focus {
    outline: none;
    border-color: #f97316;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #1f2937;
    padding-top: 2rem;
    gap: 1rem;
    position: relative;
    z-index: 10;
}

.footer-copyright {
    color: #9ca3af;
    font-size: 0.875rem;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: #1f2937;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0.375rem;
    padding: 0;
}

.social-link:hover {
    background: linear-gradient(to right, #f97316, #ec4899);
    color: white;
    transform: scale(1.1);
}

.social-icon {
    width: 18px;
    height: 18px;
    display: block;
    margin: auto;
    flex-shrink: 0;

/* Responsive Design */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-logo-img {
        width: 8rem;
        height: 8rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .section-title {
        font-size: 4rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .community-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .community-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .newsletter-form {
        flex-direction: row;
    }
    
    .footer-bottom {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 6rem;
    }
    
    .section-title {
        font-size: 6rem;
    }
}

/* Focus States */
button:focus,
input:focus,
a:focus {
    outline: 2px solid #f97316;
    outline-offset: 2px;
}

/* Loading States */
.loading {
    background: linear-gradient(90deg, #374151 25%, #4b5563 50%, #374151 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Performance Optimizations */
img, video {
    will-change: transform;
}

.parallax {
    will-change: transform;
}