/* 
    elevategames.pl (c) 2025
    Author: D4NTE
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #0f0f1b;
    color: #f0f0f0;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #1a1a2e;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #6e45e2;
  border-radius: 10px;
  border: 2px solid #1a1a2e;
}

::-webkit-scrollbar-thumb:hover {
  background: #8d63f4;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #6e45e2 #1a1a2e;
}


/* Header */
header {
    height: 100vh;
    background: linear-gradient(rgba(15, 15, 27, 0.7), rgba(15, 15, 27, 0.9)), url('https://elevategames.pl/assets/images/header.png') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    animation: fadeIn 1.5s ease-in-out;
    margin-left: 160px;
}

.logo-icon {
    font-size: 3rem;
    color: #6e45e2;
    margin-right: 15px;
    animation: spin 4s linear infinite;
}

.logo-text {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #6e45e2, #88d3ce);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(110, 69, 226, 0.4);
}

nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    z-index: 100;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #6e45e2, #88d3ce);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(110, 69, 226, 0.4);
    text-decoration: none;
    height: 60px;
}

.nav-logo i {
    margin-right: 10px;
    color: #6e45e2;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 2rem;
    position: relative;
    align-items: center;
}

.nav-links a {
    color: #f0f0f0;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding-bottom: 4px; /* trochę miejsca na kreskę */
    transition: color 0.3s;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #6e45e2, #6f45e267);
    transition: width 0.3s ease-in-out;
}

.nav-links a:hover,
.nav-links a.active {
    color: #6e45e2;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Hamburger button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 60px;
        right: 0;
        background: #0b0b0d;
        flex-direction: column;
        width: 220px;
        padding: 1rem;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        gap: 1rem;
        border-left: 3px solid #6e45e2;
    }

    .nav-links li {
        margin-left: 0;
    }

    .hamburger {
        display: flex;
    }

    .nav-links.active {
        transform: translateX(0);
    }
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}
.hamburger.open span:nth-child(2) {
    opacity: 0;
}
.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* poprawki navlinks */
/* upewnij się, że hamburger jest nad wszystkimi elementami */
.hamburger {
  z-index: 9999;
  position: relative; /* pozwala na działanie z-index */
  -webkit-tap-highlight-color: transparent; /* usuwa highlight na mobilkach */
  cursor: pointer;
  pointer-events: auto;
}

/* nav-links nad tłem, żeby linki były klikalne */
.nav-links {
  z-index: 9998;
  pointer-events: auto;
}

/* na małych ekranach ustawiamy top:100% by menu zawsze pojawiało się pod navem */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: #0b0b0d;
    flex-direction: column;
    width: 220px;
    padding: 1rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    gap: 1rem;
    border-left: 3px solid #6e45e2;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .hamburger {
    display: flex;
  }
}

/* animacja ikony (opcjonalnie) */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}



/* header */
.header-content {
    max-width: 800px;
}

.header-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: slideUp 1s ease-in-out;
    line-height: 1;
    font-weight: 500;
    color: #dfdfdf;
}
        
.header-content p {
    font-size: 0.9rem;
    margin-bottom: 2rem;
    animation: slideUp 1.2s ease-in-out;
    line-height: 1.1;
    color: #d4d4d4;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: 3px solid transparent;
    background-image:
        linear-gradient(#0b0b0d, #0b0b0d), /* tło w środku */
        linear-gradient(45deg, #6e45e2, #88d3ce); /* gradient border */
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeIn 1.5s ease-in-out;

    /* Tekst z gradientem */
    background-clip: text, border-box;
    -webkit-background-clip: text, border-box;
    -webkit-text-fill-color: transparent;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(110, 69, 226, 0.3);
}


.social-links {
    margin-top: 1.8rem;
    display: flex;
    gap: 16px;
    justify-content: center;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;

    /* Gradient border */
    border: 2px solid transparent;
    background: linear-gradient(#0b0b0d, #0b0b0d) padding-box,
                linear-gradient(45deg, #6e45e2, #88d3ce) border-box;

    /* Gradient icon */
    background-clip: text, border-box;
    -webkit-background-clip: text, border-box;
    -webkit-text-fill-color: transparent;

    transition: transform 0.3s, box-shadow 0.3s;
}

.social-links a:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 6px 15px rgba(110, 69, 226, 0.4);
}



/* Sekcje ogólne */
section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #6e45e2, #88d3ce);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-title p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: #a0a0b8;
}

/* Sekcja O nas */
.about-content {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.team-member {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 10px;
    background: rgba(26, 26, 46, 0.7);
    border-left: 4px solid #6e45e2;
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(110, 69, 226, 0.2);
}

.member-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.member-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: 1.5rem;
}

.team-member h3 {
    font-size: 1.4rem;
    margin: 0;
    color: #88d3ce;
}

.team-member p {
    color: #a0a0b8;
    line-height: 1.6;
}

.about-footer {
    margin-top: 2rem;
    padding: 1.5rem;
    border-radius: 10px;
    background: rgba(26, 26, 46, 0.5);
    border-top: 2px solid #6e45e2;
}

.about-footer p {
    color: #c4c4c4;
    font-style: italic;
    margin: 0;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.overlay-content p {
    font-size: 1.2rem;
    font-weight: 600;
}

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

.image-container:hover .image-overlay {
    opacity: 1;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-text, .about-image {
        min-width: 100%;
    }
    
    .member-header {
        flex-direction: column;
        text-align: center;
    }
    
    .member-icon {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}


/* Sekcja Nasze gry */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.game-card {
    background: #1a1a2e;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    border: 1px solid rgba(110, 69, 226, 0.1);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(110, 69, 226, 0.3);
    border-color: rgba(110, 69, 226, 0.3);
}

.game-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(45deg, #6e45e2, #88d3ce);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(110, 69, 226, 0.3);
}

.game-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 15, 27, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-play {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #6e45e2, #88d3ce);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.3s;
}

.btn-play:hover {
    transform: scale(1.1);
}

.game-image:hover .game-overlay {
    opacity: 1;
}

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

.game-details {
    padding: 1.5rem;
}

.game-header {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(110, 69, 226, 0.2);
    padding-bottom: 1rem;
}

.game-header h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: #88d3ce;
    background: linear-gradient(45deg, #88d3ce, #6e45e2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.game-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.game-tag {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.game-description {
    margin-bottom: 1.5rem;
}

.game-description > p {
    color: #a0a0b8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.game-modes {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.game-mode {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(15, 15, 27, 0.5);
    border-radius: 10px;
    border-left: 3px solid #6e45e2;
    transition: transform 0.3s;
}

.game-mode:hover {
    transform: translateX(5px);
    background: rgba(110, 69, 226, 0.1);
}

.mode-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.mode-content h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #88d3ce;
}

.mode-content p {
    color: #a0a0b8;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.game-conclusion {
    color: #c4c4c4 !important;
    font-style: italic;
    border-left: 2px solid #6e45e2;
    padding-left: 1rem;
}

.game-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    /*background: linear-gradient(45deg, #6e45e2, #88d3ce);*/
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(110, 69, 226, 0.3);
}

.btn-secondary {
    /*background: transparent;*/
    color: #6e45e2;
    border: 2px solid #6e45e2;
}

.btn-secondary:hover {
    /*background: rgba(110, 69, 226, 0.1);*/
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .game-modes {
        gap: 1rem;
    }
    
    .game-mode {
        flex-direction: column;
        text-align: center;
    }
    
    .game-actions {
        flex-direction: column;
    }
    
    .btn {
        justify-content: center;
    }
}

/* Sekcja Kariera */
.career {
    background: #1a1a2e;
    position: relative;
    overflow: hidden;
}

.career-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.career-intro {
    margin-bottom: 3rem;
}

.career-icon {
    margin-bottom: 1.5rem;
}

.career-icon i {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-background-clip: text;
    background-clip: text;
}

.career-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #88d3ce;
    background: linear-gradient(45deg, #88d3ce, #6e45e2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

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

.benefit-card {
    background: rgba(15, 15, 27, 0.5);
    padding: 2rem 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(110, 69, 226, 0.1);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(110, 69, 226, 0.2);
    border-color: rgba(110, 69, 226, 0.3);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.benefit-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #88d3ce;
}

.benefit-card p {
    color: #a0a0b8;
    margin: 0;
    font-size: 0.95rem;
}

.btn-scroll {

    color: #6e45e2;
    animation: pulse 2s infinite;
}

.btn-scroll:hover {
    background: rgba(110, 69, 226, 0.1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(110, 69, 226, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(110, 69, 226, 0); }
    100% { box-shadow: 0 0 0 0 rgba(110, 69, 226, 0); }
}

.application-section {
    background: rgba(15, 15, 27, 0.7);
    border-radius: 15px;
    padding: 2.5rem;
    border: 1px solid rgba(110, 69, 226, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.application-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.application-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #88d3ce;
}

.application-header p {
    color: #a0a0b8;
}

.form-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.form-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #f0f0f0;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #2c2c4e;
    border-radius: 8px;
    background: #0f0f1b;
    color: #f0f0f0;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6e45e2;
    box-shadow: 0 0 0 3px rgba(110, 69, 226, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.file-label {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.file-button {
    background: #6e45e2;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: normal;
}

.file-name {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #a0a0b8;
}

input[type="file"] {
    display: none;
}

.btn-submit {
    color: white;
    padding: 12px 30px;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    width: 100%;
    justify-content: center;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(110, 69, 226, 0.3);
}

@media (max-width: 768px) {
    .form-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .application-section {
        padding: 1.5rem;
    }
    
    .career-content h3 {
        font-size: 1.6rem;
    }
}

/* Sekcja Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.blog-card {
    background: #1a1a2e;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(110, 69, 226, 0.1);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(110, 69, 226, 0.2);
    border-color: rgba(110, 69, 226, 0.3);
}

.blog-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

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

.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(15, 15, 27, 0.9) 0%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.blog-date {
    color: white;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-read-more {
    width: 40px;
    height: 40px;
    background: linear-gradient(45deg, #6e45e2, #88d3ce);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s;
}

.blog-read-more:hover {
    transform: rotate(45deg);
}

.blog-image:hover .blog-overlay {
    opacity: 1;
}

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

.blog-details {
    padding: 1.5rem;
}

.blog-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-details h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #f0f0f0;
    transition: color 0.3s;
}

.blog-card:hover .blog-details h3 {
    color: #88d3ce;
}

.blog-details p {
    color: #a0a0b8;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.read-more {
    color: #6e45e2;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
}

.read-more:hover {
    color: #88d3ce;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.read-more:hover i {
    transform: translateX(5px);
}

.blog-stats {
    display: flex;
    gap: 1rem;
    color: #a0a0b8;
    font-size: 0.8rem;
}

.blog-stats span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-actions {
    text-align: center;
    margin-top: 2rem;
}

.btn-blog {
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-blog:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(110, 69, 226, 0.3);
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .blog-stats {
        width: 100%;
        justify-content: space-between;
    }
}

/* Sekcja Gry - Hauntbound */
.game-feature {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    gap: 2rem;
}

.game-feature:nth-child(even) {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-content {
    flex: 1;
    min-width: 300px;
}

.feature-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #88d3ce;
}

.steam-btn {
    display: inline-flex;
    align-items: center;
    background: #1b2838;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: background 0.3s;
}

.steam-btn i {
    margin-right: 10px;
    font-size: 1.5rem;
}

.steam-btn:hover {
    background: #2a475e;
}

/* kontakt */
#contact {
    background: #1a1a2e;
    position: relative;
    overflow: hidden;
}

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

.contact-info {
    padding: 1rem;
}

.contact-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #88d3ce;
    background: linear-gradient(45deg, #88d3ce, #6e45e2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-header p {
    color: #a0a0b8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(15, 15, 27, 0.5);
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 3px solid #6e45e2;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(110, 69, 226, 0.2);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #f0f0f0;
}

.contact-text p {
    color: #a0a0b8;
    margin: 0;
}

.social-links h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #88d3ce;
}

.contact-form-container {
    padding: 1rem;
}

.contact-form {
    background: rgba(15, 15, 27, 0.7);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(110, 69, 226, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #88d3ce;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #f0f0f0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #2c2c4e;
    border-radius: 8px;
    background: #0f0f1b;
    color: #f0f0f0;
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6e45e2;
    box-shadow: 0 0 0 3px rgba(110, 69, 226, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(110, 69, 226, 0.3);
}

@media (max-width: 968px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

/* Formularz aplikacji */
.application-form {
    background: #1a1a2e;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #2c2c4e;
    border-radius: 5px;
    background: #0f0f1b;
    color: #f0f0f0;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #6e45e2;
}

/* Footer */
footer {
    background: #0a0a14;
    padding: 4rem 0 2rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #6e45e2, #88d3ce);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(110, 69, 226, 0.4);
}

.footer-logo i {
    margin-right: 10px;
    color: #6e45e2;
}

.footer-about p {
    color: #a0a0b8;
    margin-bottom: 1rem;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #88d3ce;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #a0a0b8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #6e45e2;
}

.footer-contact p {
    color: #a0a0b8;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: #6e45e2;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #1a1a2e;
    border-radius: 50%;
    color: #f0f0f0;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.social-icons a:hover {
    background: #6e45e2;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #1a1a2e;
    color: #a0a0b8;
    font-size: 0.9rem;
}

/* Animacje */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* Responsywność */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .header-content h1 {
        font-size: 2.5rem;
    }
    
    .logo-text {
        font-size: 2.5rem;
    }
    
    .logo-icon {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

/* poprawka bloga */
/* Dodatkowe style dla podstrony bloga */
.blog-post {
    max-width: 900px;
    margin: 0 auto;
    background: #1a1a2e;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.blog-post-header {
    position: relative;
}

.blog-post-image {
    height: 400px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem;
    color: #fff;
}

.blog-post-title h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #88d3ce;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    color: #a0a0b8;
    font-size: 0.9rem;
}

.blog-post-meta i {
    margin-right: 5px;
    color: #6e45e2;
}

.blog-post-content {
    padding: 2rem;
    line-height: 1.8;
}

.blog-post-content p {
    margin-bottom: 1.5rem;
    color: #f0f0f0;
}

.blog-post-content h2, 
.blog-post-content h3 {
    color: #88d3ce;
    margin: 2rem 0 1rem;
}

.blog-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #2c2c4e;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    color: #6e45e2;
    text-decoration: none;
    font-weight: 600;
}

.back-to-blog i {
    margin-right: 8px;
}

.share-buttons {
    display: flex;
    gap: 1rem;
}

.share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #2c2c4e;
    border-radius: 50%;
    color: #f0f0f0;
    text-decoration: none;
    transition: background 0.3s;
}

.share-button:hover {
    background: #6e45e2;
}

@media (max-width: 768px) {
    .blog-post-image {
        height: 250px;
    }
    
    .blog-post-title h1 {
        font-size: 1.8rem;
    }
    
    .blog-navigation {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Style dla przełącznika języka */
.language-switcher {
    display: flex;
    align-items: center;
    margin-left: 2rem;
    height: 100%;
}

.language-switcher a {
    color: #f0f0f0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
}

.language-switcher a.active {
    color: #6e45e2;
    background: rgba(110, 69, 226, 0.1);
}

.language-switcher a:hover {
    color: #6e45e2;
}

.language-switcher span {
    margin: 0 0.5rem;
    color: #a0a0b8;
}

/* Responsywność dla przełącznika języka */
@media (max-width: 768px) {
    .language-switcher {
        margin-left: 1rem;
    }
}

/* Style dla sekcji duchów i umiejętności */
.ghosts-grid, .abilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.ghost-card, .ability-card {
    background: #1a1a2e;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.ghost-card:hover, .ability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(110, 69, 226, 0.2);
}

.ghost-image {
    height: 200px;
    overflow: hidden;
}

.ghost-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ghost-details, .ability-details {
    padding: 1.5rem;
}

.ghost-details h3, .ability-details h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #88d3ce;
}

.ghost-description, .ability-description {
    color: #a0a0b8;
    margin-bottom: 1rem;
}

.ghost-abilities, .ability-upgrades {
    margin-top: 1.5rem;
}

.ghost-abilities h4, .ability-upgrades h4 {
    color: #6e45e2;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.ghost-abilities ul, .ability-upgrades ul {
    list-style: none;
    padding-left: 0;
}

.ghost-abilities li, .ability-upgrades li {
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
    position: relative;
    color: #a0a0b8;
}

.ghost-abilities li:before, .ability-upgrades li:before {
    content: "•";
    color: #6e45e2;
    position: absolute;
    left: 0;
}

.cooldown {
    color: #88d3ce;
    font-size: 0.9rem;
}

.ghost-stats {
    margin-top: 1.5rem;
}

.stat {
    margin-bottom: 1rem;
}

.stat-label {
    display: block;
    margin-bottom: 0.3rem;
    color: #a0a0b8;
    font-size: 0.9rem;
}

.stat-bar {
    height: 8px;
    background: #0f0f1b;
    border-radius: 4px;
    overflow: hidden;
}

.stat-value {
    height: 100%;
    background: linear-gradient(45deg, #6e45e2, #88d3ce);
    border-radius: 4px;
}

.ability-icon {
    text-align: center;
    padding: 1.5rem;
    background: #0f0f1b;
    font-size: 2.5rem;
    color: #6e45e2;
}

.ability-info {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #0f0f1b;
    border-radius: 5px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.info-label {
    color: #a0a0b8;
}

.info-value {
    color: #88d3ce;
    font-weight: 600;
}

/* Responsywność */
@media (max-width: 768px) {
    .ghosts-grid, .abilities-grid {
        grid-template-columns: 1fr;
    }
    
    .ghost-image {
        height: 150px;
    }
}

/* sklep */
#cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 380px;
    height: 100vh;
    background: #1a1a2e;
    z-index: 1001;
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    border-left: 2px solid #6e45e2;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
}

#cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(110, 69, 226, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(15, 15, 27, 0.7);
}

.cart-header h3 {
    color: #f0f0f0;
    margin: 0;
    font-size: 1.4rem;
    background: linear-gradient(45deg, #88d3ce, #6e45e2);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.close-cart {
    background: none;
    border: none;
    color: #a0a0b8;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-cart:hover {
    color: #6e45e2;
    background: rgba(110, 69, 226, 0.1);
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.empty-cart-message {
    text-align: center;
    color: #a0a0b8;
    padding: 3rem 0;
}

.empty-cart-message i {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: rgba(110, 69, 226, 0.3);
}

.empty-cart-message p {
    margin: 0;
    font-size: 1.1rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(15, 15, 27, 0.5);
    border-radius: 10px;
    border-left: 3px solid #6e45e2;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cart-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(110, 69, 226, 0.2);
}

.cart-item-image {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    font-size: 1rem;
    margin: 0 0 0.5rem 0;
    color: #f0f0f0;
}

.cart-item-price {
    color: #88d3ce;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    background: rgba(110, 69, 226, 0.2);
    border: 1px solid rgba(110, 69, 226, 0.3);
    color: #6e45e2;
    width: 25px;
    height: 25px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: bold;
}

.quantity-btn:hover {
    background: #6e45e2;
    color: white;
}

.cart-item-quantity span {
    color: #f0f0f0;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.remove-item {
    background: rgba(255, 107, 107, 0.2);
    border: none;
    color: #ff6b6b;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.remove-item:hover {
    background: #ff6b6b;
    color: white;
    transform: scale(1.1);
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(110, 69, 226, 0.3);
    background: rgba(15, 15, 27, 0.7);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    font-weight: 700;
    color: #f0f0f0;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(110, 69, 226, 0.2);
}

.total-price {
    color: #88d3ce;
}

.btn-checkout {
    width: 100%;
    background: linear-gradient(45deg, #0070ba, #1546a0);
    color: white;
    border: none;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0, 112, 186, 0.3);
}

.btn-checkout:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-checkout:not(:disabled):hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 112, 186, 0.4);
}

#cart-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 27, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
}

#cart-overlay.open {
    display: block;
}

/* Animacja pojawiania się elementów koszyka */
@keyframes cartItemAppear {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cart-item {
    animation: cartItemAppear 0.3s ease-out;
}

/* Pasek przewijania dla koszyka */
.cart-items::-webkit-scrollbar {
    width: 6px;
}

.cart-items::-webkit-scrollbar-track {
    background: rgba(15, 15, 27, 0.3);
    border-radius: 3px;
}

.cart-items::-webkit-scrollbar-thumb {
    background: #6e45e2;
    border-radius: 3px;
}

.cart-items::-webkit-scrollbar-thumb:hover {
    background: #88d3ce;
}

/* Responsywność */
@media (max-width: 768px) {
    #cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .cart-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cart-item-image {
        width: 100%;
        height: 120px;
        margin-bottom: 0.5rem;
    }
    
    .remove-item {
        align-self: center;
        margin-top: 0.5rem;
    }
}

/* poprawki rwd
/* --- Poprawiona nawigacja RWD --- */

/* Ogólne poprawki nawigacji */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 5%;
}

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

.nav-links a {
  color: #f0f0f0;
  text-decoration: none;
  padding-bottom: 3px;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #6e45e2;
}

/* --- Styl rozwiniętego menu na telefonie --- */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    width: 240px;
    background: rgba(0, 0, 0, 0.15);
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 1rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    border-left: 3px solid #6e45e2;
    box-shadow: -2px 0 12px rgba(0, 0, 0, 0.5);
    border-radius: 0 0 0 8px;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links li {
    margin: 0;
    width: 100%;
    text-align: right;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.6rem 1rem;
    border-radius: 4px;
  }

  .nav-links a:hover {
    background: rgba(110, 69, 226, 0.1);
    color: #88d3ce;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
  }

  .hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s;
  }

  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
  }
}

.header-content {
max-width: 800px;
margin: 0 auto;
padding: 0 1rem;
text-align: center;
position: relative;
z-index: 2;
}


.header-content h1 {
font-size: clamp(2rem, 5vw, 3rem);
margin-bottom: 1rem;
line-height: 1.2;
font-weight: 600;
color: #dfdfdf;
}


.header-content p {
font-size: clamp(1rem, 3.5vw, 1.2rem);
margin-bottom: 2rem;
color: #d4d4d4;
line-height: 1.5;
}


@media (max-width: 768px) {
.header-content {
padding: 0 1.2rem;
}
.header-content h1 {
font-size: 2rem;
}
.header-content p {
font-size: 1rem;
}
}

.logo {
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 2rem auto;
animation: fadeIn 1.5s ease-in-out;
}


.logo-icon {
font-size: 3rem;
color: #6e45e2;
margin-right: 15px;
animation: spin 4s linear infinite;
}


.logo-text {
font-size: 3.5rem;
font-weight: 700;
background: linear-gradient(45deg, #6e45e2, #88d3ce);
-webkit-background-clip: text;
background-clip: text;
color: transparent;
text-shadow: 0 2px 10px rgba(110, 69, 226, 0.4);
}


@media (max-width: 768px) {
.logo-icon {
font-size: 2.5rem;
}
.logo-text {
font-size: 2.5rem;
}
}