/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    min-height: 100vh;
}

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

/* Header */
.header {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #0066FF;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-section a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo {
    width: 40px;
    height: 40px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00FF7F;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-info .phone {
    color: #0066FF;
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(45deg, rgba(0, 102, 255, 0.1), rgba(0, 255, 127, 0.1));
    border-bottom: 1px solid rgba(0, 255, 127, 0.3);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

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

.hero-image img {
    width: 100%;
    max-width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    border: 2px solid #0066FF;
    box-shadow: 0 15px 35px rgba(0, 102, 255, 0.3);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #00FF7F;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 255, 127, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.service-btn {
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    border: 2px solid;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #0066FF, #0052CC);
    color: white;
    border-color: #0066FF;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0052CC, #003D99);
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #00FF7F;
    border-color: #00FF7F;
}

.btn-secondary:hover {
    background: #00FF7F;
    color: #1a1a1a;
    box-shadow: 0 0 15px rgba(0, 255, 127, 0.4);
}

.service-btn {
    background: linear-gradient(135deg, #00FF7F, #00CC66);
    color: #1a1a1a;
    border-color: #00FF7F;
    width: 100%;
}

.service-btn:hover {
    background: linear-gradient(135deg, #00CC66, #009952);
    box-shadow: 0 0 15px rgba(0, 255, 127, 0.4);
}

/* Sections */
.section {
    padding: 4rem 0;
    border-bottom: 1px solid rgba(0, 255, 127, 0.1);
}

.centered-content {
    text-align: center;
}

.centered-content .container > * {
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0066FF;
    text-align: center;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.about-item {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 102, 255, 0.05);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 10px;
}

.about-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-item h3 {
    color: #00FF7F;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Tournament Schedule */
.tournament-schedule {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tournament-day {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #0066FF;
}

.tournament-day h3 {
    color: #00FF7F;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-transform: uppercase;
}

.tournament-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem 0;
    border-top: 1px solid rgba(0, 255, 127, 0.2);
    font-family: 'Courier New', monospace;
}

.tournament-item .game {
    color: #e0e0e0;
    font-weight: 600;
}

.tournament-item .time {
    color: #0066FF;
}

.tournament-item .prize {
    color: #00FF7F;
    font-weight: 700;
}

/* Equipment Grid */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.equipment-item {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 127, 0.2);
    transition: transform 0.3s ease;
}

.equipment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.2);
}

.equipment-image {
    height: 200px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

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

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

.equipment-item h3 {
    color: #00FF7F;
    padding: 1rem;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.equipment-item p {
    padding: 0 1rem 1.5rem;
    color: #ccc;
    line-height: 1.5;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid #0066FF;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #00FF7F;
    box-shadow: 0 0 20px rgba(0, 255, 127, 0.1);
    transform: translateY(-5px);
}

.service-card h3 {
    color: #0066FF;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.service-price {
    color: #00FF7F;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    margin-bottom: 1rem;
}

.service-card p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Menu Section */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.menu-category h3 {
    color: #0066FF;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    text-align: center;
}

.menu-items {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid rgba(0, 102, 255, 0.3);
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 255, 127, 0.1);
}

.menu-item:last-child {
    border-bottom: none;
}

.item-name {
    color: #e0e0e0;
    font-weight: 500;
}

.item-price {
    color: #00FF7F;
    font-weight: 700;
    font-family: 'Courier New', monospace;
}

/* Rankings */
.rankings-table {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #0066FF;
}

.rankings-header {
    display: grid;
    grid-template-columns: 80px 1fr 100px 80px;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(0, 102, 255, 0.2);
    color: #00FF7F;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Courier New', monospace;
}

.ranking-row {
    display: grid;
    grid-template-columns: 80px 1fr 100px 80px;
    gap: 1rem;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(0, 255, 127, 0.1);
    font-family: 'Courier New', monospace;
}

.ranking-row:last-child {
    border-bottom: none;
}

.rank {
    color: #00FF7F;
    font-weight: 700;
}

.player {
    color: #e0e0e0;
}

.points {
    color: #0066FF;
    font-weight: 600;
}

.games {
    color: #ccc;
}

/* Community Section */
.community-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(0, 102, 255, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00FF7F;
    font-family: 'Courier New', monospace;
}

.stat-label {
    color: #ccc;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.community-text {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Contacts */
.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 127, 0.2);
}

.contact-item h3 {
    color: #0066FF;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.contact-item a {
    color: #00FF7F;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.contact-item a:hover {
    text-shadow: 0 0 10px rgba(0, 255, 127, 0.5);
}

.contact-item p {
    color: #ccc;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    border-top: 2px solid #0066FF;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-info {
    flex: 1;
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-info p {
    color: #ccc;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex: 1;
    justify-content: flex-end;
}

.footer-column h4 {
    color: #00FF7F;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #0066FF;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 127, 0.1);
    color: #666;
    font-family: 'Courier New', monospace;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 250px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .community-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .rankings-header,
    .ranking-row {
        grid-template-columns: 60px 1fr 80px 60px;
        padding: 1rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* Pixel pattern background effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0, 102, 255, 0.1) 0%, transparent 1%),
        radial-gradient(circle at 75% 75%, rgba(0, 255, 127, 0.1) 0%, transparent 1%);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: -1;
}