:root {
    --primary-color: #FFAA00;
    --background-color: #121212;
    --text-color: #ffffff;
}

.skills-page {
    min-height: 100vh;
    padding: 120px 5% 4rem;
    background-color: var(--background-color);
    position: relative;
    overflow: hidden;
}

/* Wish Text Styling */
.wish-text {
    text-align: center;
    margin-bottom: 4rem;
}

.wish-text h1 {
    font-family: 'Permanent Marker', cursive;
    font-size: 4.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.wish-text p {
    font-family: 'Permanent Marker', cursive;
    font-size: 2rem;
    color: var(--text-color);
    opacity: 0.8;
}

/* Skills Section */
.skills-section {
    margin-bottom: 4rem;
}

.skills-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.skill-item {
    background: rgba(255, 170, 0, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.skill-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 170, 0, 0.15);
}

.skill-item::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    opacity: 0.2;
    border-radius: 50%;
    top: -10px;
    left: -10px;
}

/* Tools Section */
.tools-section {
    margin-bottom: 4rem;
}

.tools-section h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.tool-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.tool-item:hover {
    background: rgba(255, 170, 0, 0.1);
    transform: translateX(10px);
}

.tool-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Loading Text */
.loading-text {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-top: 3rem;
    opacity: 0.8;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.4; }
    50% { opacity: 0.8; }
    100% { opacity: 0.4; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .wish-text h1 {
        font-size: 3rem;
    }

    .wish-text p {
        font-size: 1.5rem;
    }

    .skills-section h2,
    .tools-section h2 {
        font-size: 2rem;
    }

    .loading-text {
        font-size: 1.5rem;
    }
} 