:root {
    --black-text-color: #000000;
    --white-text-color: #ffffff;
    --white-background-color: #ffffff;
    --darkslate-element-color: darkslategray;
    --antiquewhite-element-color: antiquewhite;
    --error-color: tomato;
    --okay-color: mediumseagreen;
    --info-color: lightblue;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

.country-select {
    width: 100%;
    padding: 8px;
    margin: 8px 0;
    box-sizing: border-box
}

.img-flag {
    width: 20px;
    height: 15px;
    margin-right: 5px;
}

header {
    display: none;
}

footer {
    background-color: #333;
    color: white;
    padding: 10px;
    text-align: center;
    position: fixed;
    width: 100%;
    bottom: 0;
}
/*INDEX PAGE*/
.banner {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    margin-bottom: 50px;
}

.bannerimage {
    max-width: 100%;
}

.messages {
    /*width: 100%;*/
    padding: 20px 0px 20px 0px;
    text-align: center;
    font-size: 1.5rem;
    background-color: var(--black-text-color);
}

.alert {
    padding: 20px 0px;
    border: 1px solid;
    border-radius: 5px;
}

.alert-danger {
    color: var(--error-color);
    border-color: var(--error-color);
}

.alert-success {
    color: var(--okay-color);
    background-color: var(--black-text-color);
    border-color: var(--okay-color);
}

.alert-info {
    color: var(--info-color);
    background-color: var(--black-text-color);
    border-color: var(--info-color);
}

/* Optional: Add animation */
.alert {
    animation: fadeIn 0.5s ease-in forwards;
}

.alert.fade-out {
    animation: fadeOut 0.5s ease-out forwards;
}

@keyframes fadeIn {
    from {
        background: white;
        clip-path: inset(0 100% 0 0);
    }
    to {
        background: var(--black-text-color);
        clip-path: inset(0 0 0 0);
    }
}

@keyframes fadeOut {
    from {
        background: var(--black-text-color);
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
    to {
        background: white;
        clip-path: inset(0 0 0 100%);
        opacity: 0;
    }
}

.organizer-sticky {
    left: 20px;
    top: 100px;
    position: absolute;
    width: 30%;
    border: 1px solid;
    margin: 1rem 1rem;
    padding: 1rem;
    z-index: 999;
    background: antiquewhite;
    border: 5px solid white;
    border-radius: 5px;    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.organizer-sticky p {
    color: var(--black-text-color);
    font-size: 1.4rem;
    font-weight: bold;
}

.organizer-sticky ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.organizer-sticky li {
    margin: 8px 0;
}

.organizer-sticky a {
    color: var(--darkslate-element-color);
    text-decoration: none;
}

.organizer-sticky a:hover {
    text-decoration: underline;
}
.button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 400;
    font-size: 17px;
    border: 1px solid;
    font-family: inherit;
    text-transform: uppercase;
    z-index: 1;
    max-width: 200px;
   }
   
   .button:hover {
    color: rgb(10, 25, 30);
   }
   
   .button:active {
    filter: brightness(.8);
   }
.confirm-button {
    background-color: var(--okay-color);
    color: var(--white-text-color);
}
.cancel-button {
    background-color: var(--error-color);
}

.confirm-button::before, .confirm-button::after {
    background-color: var(--okay-color);
}
.cancel-button::before, .cancel-button::after {
    background-color: var(--error-color);
}
/*BUTTON SETUP*/
#joinGameForm {   
    background-color: var(--white-background-color);
    border: 1px solid;
    border-radius: 5px;
    padding: 20px;
}
#joinDialog {
    background-color: var(--white-background-color);
    border: 1px solid;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: 80%;
}

input {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid;
    border-radius: 5px;
}   

label {
    display: block;
    margin-bottom: 5px;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    background: var(--darkslate-element-color);
    padding: 2rem;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1rem;
    z-index: 3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.8rem;
    z-index: 3;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.2rem;
    z-index: 3;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.6;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    z-index: 3;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-shadow: none;
    border: 2px solid transparent;
}

.hero-btn.primary {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.hero-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
}

.hero-btn.secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.hero-btn.secondary:hover {
    background: white;
    color: var(--darkslate-element-color);
    transform: translateY(-2px);
}

/* Platform Info Section */
.platform-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
    margin-top: -2rem;
    position: relative;
    z-index: 5;
}

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

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

.info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--darkslate-element-color), #495057);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.info-card h3 {
    font-size: 1.5rem;
    color: var(--darkslate-element-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Features Section */
.features-section {
    position: relative;
    z-index: 10;
    background: white;
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--darkslate-element-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 300;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border-color: var(--darkslate-element-color);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--darkslate-element-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--darkslate-element-color);
}

.feature-card p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

.feature-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
    background: #e8f5e8;
    color: #2d5a2d;
}

.feature-badge.login-required {
    background: #fff3cd;
    color: #856404;
}

/* Animated Reveal for Feature Cards */
.feature-card {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.6s ease forwards;
}

.feature-card:nth-child(1) { 
    animation-delay: 0.1s; 
}

.feature-card:nth-child(2) { 
    animation-delay: 0.2s; 
}

.feature-card:nth-child(3) { 
    animation-delay: 0.3s; 
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 5;
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: white;
    text-decoration: none;
    display: block;
    transition: opacity 0.3s ease;
}

.scroll-indicator a:hover {
    opacity: 0.8;
}

.scroll-indicator i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.scroll-indicator span {
    font-size: 0.9rem;
    opacity: 0.8;
}

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

/* Enhanced Organizer Sticky */
.organizer-sticky {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 0;
    overflow: hidden;
}

.organizer-header {
    background: var(--darkslate-element-color);
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.organizer-header h3 {
    margin: 0;
    font-size: 1.2rem;
}

.tournament-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tournament-card {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.tournament-card:hover {
    background-color: #f5f5f5;
}

.tournament-info {
    display: flex;
    flex-direction: column;
}

.tournament-name {
    font-weight: bold;
    color: var(--darkslate-element-color);
}

.tournament-code {
    font-size: 0.9rem;
    color: #666;
}

/* Enhanced Modal Dialog */
.modern-dialog {
    border: none;
    border-radius: 10px;
    padding: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 90%;
}

.dialog-header {
    background: var(--darkslate-element-color);
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 10px 10px 0 0;
}

.dialog-header h3 {
    margin: 0;
}

.close-button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0;
}

.dialog-content {
    padding: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.dialog-footer {
    padding: 1rem;
    background: #f5f5f5;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    border-radius: 0 0 10px 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .organizer-sticky {
        position: relative;
        width: auto;
        margin: 1rem;
        top: 0;
        left: 0;
    }
}

/* Hamburger Menu Styles */
.nav-container {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
}

.hamburger-menu {
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid #000;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
    position: relative; /* Needed for absolute positioning of notification dot */
}

.hamburger-menu:hover {
    background: #f5f5f5;
}

.bar {
    width: 100%;
    height: 2px;
    background: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Main Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 999;
}

.main-nav.active {
    left: 0;
}

.nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.nav-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--darkslate-element-color);
}

.close-nav {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    padding: 5px;
}

.nav-links {
    padding: 20px 0;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: #f5f5f5;
    color: var(--darkslate-element-color);
}

.nav-link i {
    width: 24px;
    margin-right: 10px;
}

/* Notification Dot Styles */
.notification-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #e74c3c;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: pulse 2s infinite;
}

.hamburger-dot {
    right: 1px;
    bottom: 1px;
}

.nav-link-dot {
    top: 15px;
    right: 20px;
}

.nav-link {
    position: relative; /* Needed for absolute positioning of dot */
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Overlay when menu is open */
body.menu-open::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .main-nav {
        width: 100%;
        left: -100%;
    }
}

/* Winner Announcement */
.winner-announcement {
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 10px;
    color: #333;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.winner-announcement i {
    color: #ff6b35;
    margin-right: 0.5rem;
}

/* Disabled Button Styles */
.button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.button.disabled:hover {
    transform: none;
    box-shadow: none;
}

/* 3rd Place Playoff Styles */
.playoff-section {
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #dee2e6;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.playoff-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #cd7f32, #ffd700);
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

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

.playoff-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.playoff-header i {
    font-size: 2rem;
    color: #cd7f32;
    margin-bottom: 0.5rem;
    display: block;
}

.playoff-header h3 {
    margin: 0;
    font-size: 1.8rem;
    color: var(--darkslate-element-color);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.playoff-subtitle {
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
    margin-top: 0.5rem;
}

.playoff-bracket {
    display: flex;
    justify-content: center;
    align-items: center;
}

.playoff-match {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.playoff-match:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.player-slot {
    min-width: 120px;
    text-align: center;
}

.playoff-match .player-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--darkslate-element-color);
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.playoff-match .player-name.placeholder {
    color: #6c757d;
    font-style: italic;
    background: #e9ecef;
}

.playoff-match .vs {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #cd7f32, #daa520);
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(205, 127, 50, 0.3);
}

.playoff-match .vs i {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Responsive Design for Playoff */
@media (max-width: 768px) {
    .playoff-section {
        margin: 1.5rem 0;
        padding: 1.5rem;
    }
    
    .playoff-header h3 {
        font-size: 1.5rem;
    }
    
    .playoff-match {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .playoff-match .vs {
        order: -1;
        margin-bottom: 0.5rem;
    }
    
    .player-slot {
        min-width: auto;
        width: 100%;
    }
    
    .playoff-match .player-name {
        width: 100%;
        box-sizing: border-box;
    }
}

@media (max-width: 480px) {
    .playoff-section {
        padding: 1rem;
    }
    
    .playoff-header h3 {
        font-size: 1.3rem;
    }
    
    .playoff-match {
        padding: 1rem;
    }
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, var(--darkslate-element-color) 0%, #495057 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.feature-item i {
    font-size: 2rem;
    color: #ff6b6b;
    margin-bottom: 0.5rem;
}

.feature-item span {
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-features {
        gap: 2rem;
    }
    
    .feature-item i {
        font-size: 1.5rem;
    }
}

/* Contact Section */
.contact-section {
    background: white;
    padding: 3rem 0;
    border-top: 1px solid #e9ecef;
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-content h3 {
    font-size: 2rem;
    color: var(--darkslate-element-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--darkslate-element-color);
    color: var(--white-text-color);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-email:hover {
    background: #2f4f4f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.contact-email i {
    font-size: 1.2rem;
}

/* Responsive Contact Section */
@media (max-width: 768px) {
    .contact-section {
        padding: 2rem 0;
    }
    
    .contact-content h3 {
        font-size: 1.5rem;
    }
    
    .contact-content p {
        font-size: 1rem;
    }
    
    .contact-email {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--darkslate-element-color);
    color: var(--white-text-color);
    padding: 1rem 2rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    display: block;
    visibility: visible;
    opacity: 1;
    animation: cookieSlideUp 0.3s ease-out;
    pointer-events: auto;

}

.cookie-banner.hidden {
    display: none !important;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 250px;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-accept-button {
    background: var(--okay-color);
    color: var(--white-text-color);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-accept-button:hover {
    background: #2d8659;
    transform: translateY(-1px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.cookie-accept-button:active {
    transform: translateY(0);
}

@keyframes cookieSlideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Responsive Cookie Banner */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .cookie-accept-button {
        width: 100%;
    }
}
