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

body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
header {
    text-align: center;
    padding: 40px 0px 0px 0px;
    position: relative;
    z-index: 10;
}

/* Clickable Header */
h1 a {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #954dee, #0d6ed8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

h1 a:hover {
    transform: scale(1.05);
    color: #954dee;
}

/* Tagline */
.tagline {
    font-size: 1.2rem;
    color: #b8c0cc;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Icon Container */
.icon-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.icon {
    font-size: 3rem;
    color: #0d6ed8;
    transition: all 0.3s ease;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    text-decoration: none;
}

.icon:hover {
    transform: scale(1.2) rotate(10deg);
    color: #954dee;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    text-decoration: none;
}

.icon i {
    transition: all 0.3s ease;
}

.icon:hover i {
    transform: scale(1.3);
}

/* Icon clicked state */
.icon-clicked {
    transform: scale(1.4) rotate(15deg);
    background: #ff6b6b;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.icon-clicked i {
    transform: scale(1.3);
}

/* About Section */
.about {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin: 40px auto;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

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

.about h2 {
    font-size: 2rem;
    color: #0d6ed8;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 3px solid #954dee;
    padding-bottom: 10px;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}

.about p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.8;
}

/* Progress Section */
.progress-container {
    margin: 40px auto;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.progress-container:hover {
    transform: translateY(-5px);
}

.progress-container h2 {
    text-align: center;
    color: #0d6ed8;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.progress-bar {
    height: 20px;
    background: #1a1a2e;
    border-radius: 10px;
    overflow: hidden;
    margin: 20px 0;
    border: 1px solid #0d6ed8;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ee574d, #4ecd77);
    width: 0%;
    transition: width 1.5s ease;
    border-radius: 10px;
}

/* Buttons (all styles in CSS) */
button {
    background: #0d6ed8;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

button:hover {
    background: #954dee;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

button:active {
    transform: scale(0.95);
}

/* Footer */
footer {
    text-align: center;
    padding: 0px 0;
    margin-top: 0px;
    color: #b8c0cc;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}

/* Games CSS */
.games {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin: 40px auto;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.games h2 {
    font-size: 2rem;
    color: #0d6ed8;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 3px solid #954dee;
    padding-bottom: 10px;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}

.game-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #954dee;
    transition: all 0.3s ease;
}

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

.game-card h3 {
    font-size: 1.5rem;
    color: #0d6ed8;
    margin-bottom: 10px;
}

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