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

body {
    font-family: 'Rajdhani', 'Arial Black', 'Arial', sans-serif;
    font-weight: 600;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    overflow-x: hidden;
    min-height: 100vh;
}

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

/* Header */
.header {
    text-align: center;
    padding: 30px 0;
    border-bottom: 3px solid #ff6b00;
    margin-bottom: 40px;
    position: relative;
}

.header::before,
.header::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border: 3px solid #ff6b00;
    top: 50%;
    transform: translateY(-50%);
}

.header::before {
    left: 10%;
    border-radius: 50%;
    animation: rotate 3s linear infinite;
}

.header::after {
    right: 10%;
    border-radius: 50%;
    animation: rotate 3s linear infinite reverse;
}

.logo h1 {
    font-family: 'Bebas Neue', 'Arial Black', sans-serif;
    font-size: 4rem;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: #ff6b00;
    text-shadow: 3px 3px 0px #000, 6px 6px 10px rgba(0,0,0,0.5);
    margin-bottom: 10px;
    animation: pulse 2s ease-in-out infinite;
    font-weight: 400;
}

.tagline {
    font-family: 'Bebas Neue', 'Arial Black', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 4px;
    font-weight: 400;
}

/* Hero Section */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
    padding: 40px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 20px;
    border: 2px solid #ff6b00;
}

.hero-image {
    position: relative;
}

.main-gif {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
    animation: float 3s ease-in-out infinite;
}

.hero-text {
    text-align: center;
}

.hero-text h2 {
    font-family: 'Bebas Neue', 'Arial Black', sans-serif;
    font-size: 2.5rem;
    color: #ff6b00;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 400;
}

.motto {
    font-family: 'Bebas Neue', 'Arial Black', sans-serif;
    font-size: 1.8rem;
    line-height: 2;
    color: #fff;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    letter-spacing: 2px;
}

/* Gallery */
.gallery {
    margin-bottom: 60px;
}

.gallery h2 {
    font-family: 'Bebas Neue', 'Arial Black', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    color: #ff6b00;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 400;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.image-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    border: 3px solid #ff6b00;
    background: #1a1a1a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.image-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.5);
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

/* Football Animation */
.football-animation {
    margin: 60px 0;
    padding: 40px 20px;
    background: rgba(34, 139, 34, 0.1);
    border-radius: 20px;
    border: 2px solid #228b22;
}

.field {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(to bottom, #228b22 0%, #32cd32 50%, #228b22 100%);
    border-radius: 15px;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.3);
}

.field::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #fff;
    opacity: 0.5;
}

.field::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid #fff;
    border-radius: 50%;
    opacity: 0.5;
}

.ball {
    position: absolute;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle at 30% 30%, #fff, #c0c0c0);
    border-radius: 50%;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    animation: kickBall 4s ease-in-out infinite;
}

.ball::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background: #000;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.3;
}

.ball::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background: #000;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.3;
}

.goal-left,
.goal-right {
    position: absolute;
    top: 50%;
    width: 20px;
    height: 120px;
    border: 4px solid #fff;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.2);
}

.goal-left {
    left: 0;
    border-right: none;
    border-radius: 0 10px 10px 0;
}

.goal-right {
    right: 0;
    border-left: none;
    border-radius: 10px 0 0 10px;
}

.grass-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: repeating-linear-gradient(
        90deg,
        #228b22 0px,
        #228b22 10px,
        #32cd32 10px,
        #32cd32 20px
    );
}

/* Social Links */
.social-section {
    text-align: center;
    margin: 60px 0;
    padding: 40px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: 20px;
    border: 2px solid #ff6b00;
}

.social-section h2 {
    font-family: 'Bebas Neue', 'Arial Black', sans-serif;
    font-size: 2.5rem;
    color: #ff6b00;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-weight: 400;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #ff6b00;
    border-radius: 15px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    min-width: 120px;
}

.social-link:hover {
    background: rgba(255, 107, 0, 0.2);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
}

.social-link svg,
.social-icon {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.social-link:hover svg,
.social-link:hover .social-icon {
    transform: rotate(360deg) scale(1.2);
}

.social-link span {
    font-family: 'Bebas Neue', 'Arial Black', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.twitter svg {
    color: #1da1f2;
}

/* Footer */
.footer {
    font-family: 'Bebas Neue', 'Arial Black', sans-serif;
    text-align: center;
    padding: 30px 0;
    border-top: 3px solid #ff6b00;
    margin-top: 40px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 3px;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    from {
        transform: translateY(-50%) rotate(0deg);
    }
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

@keyframes kickBall {
    0% {
        left: 10%;
        transform: translateY(-50%) rotate(0deg);
    }
    25% {
        top: 30%;
        transform: translateY(-50%) rotate(180deg);
    }
    50% {
        left: 50%;
        top: 50%;
        transform: translateY(-50%) rotate(360deg);
    }
    75% {
        top: 70%;
        transform: translateY(-50%) rotate(540deg);
    }
    100% {
        left: 90%;
        top: 50%;
        transform: translateY(-50%) rotate(720deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .tagline {
        font-size: 1rem;
    }

    .hero-text h2 {
        font-size: 1.8rem;
    }

    .motto {
        font-size: 1.3rem;
    }

    .image-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .field {
        height: 300px;
    }

    .social-links {
        gap: 20px;
    }

    .social-link {
        min-width: 100px;
        padding: 15px 20px;
    }
}

