@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #00a2ff;
    --secondary-color: #0066ff;
    --accent-color: #00ffff;
    --background-color: #000000;
    --card-bg: rgba(0, 162, 255, 0.05);
    --text-color: #ffffff;
    --glow-color: rgba(0, 162, 255, 0.3);
}

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

body {
    font-family: 'Rajdhani', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 20, 40, 0.95) 100%
    );
}

.background-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.background-shapes::before,
.background-shapes::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid var(--primary-color);
    opacity: 0.1;
    animation: rotate 20s linear infinite;
}

.background-shapes::before {
    top: 10%;
    left: 5%;
    transform: rotate(45deg);
    border-color: var(--primary-color);
}

.background-shapes::after {
    bottom: 10%;
    right: 5%;
    transform: rotate(30deg);
    border-color: var(--secondary-color);
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, 
            rgba(0, 162, 255, 0.05) 0%,
            transparent 50%),
        radial-gradient(circle at 80% 70%, 
            rgba(0, 255, 255, 0.05) 0%,
            transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.intro-text {
    font-size: 7rem;
    font-weight: 600;
    margin-bottom: 60px;
    background: linear-gradient(
        45deg,
        var(--text-color) 0%,
        var(--primary-color) 50%,
        var(--text-color) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

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

/* Navigation */
.nav-container {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid var(--primary-color);
    box-shadow: 0 2px 20px var(--glow-color);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--glow-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--glow-color);
}

.about-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: linear-gradient(45deg, rgba(0, 102, 255, 0.1), rgba(0, 162, 255, 0.1));
}

.about-content {
    display: flex;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--glow-color);
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.tech-item {
    padding: 8px 16px;
    background: var(--card-bg);
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px var(--glow-color);
}

.tech-item:hover {
    background: var(--primary-color);
    color: var(--background-color);
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--primary-color);
}

/* Projects Section */
.projects-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 162, 255, 0.1));
}

.projects-section h2 {
    font-size: 3rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
    text-shadow: 0 0 20px var(--glow-color);
}

.project-category {
    margin-bottom: 60px;
}

.project-category h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--accent-color);
    text-shadow: 0 0 15px var(--glow-color);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.project-header h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}

.project-tags {
    display: flex;
    gap: 10px;
}

.status-tag {
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.date-tag {
    padding: 4px 8px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.8rem;
    background: rgba(0, 162, 255, 0.15);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.status-tag.wip {
    background: rgba(255, 166, 0, 0.2);
    color: #ffa600;
    border: 1px solid #ffa600;
}

.status-tag.live {
    background: rgba(0, 255, 136, 0.2);
    color: #00ff88;
    border: 1px solid #00ff88;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.games-grid .project-card {
    grid-column: 1;
}

.project-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 15px var(--glow-color);
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 0 30px var(--primary-color);
}

.project-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-bottom: 1px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.project-image a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: rgba(0, 162, 255, 0.02);
    padding: 10px;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.2);
}

.project-content {
    padding: 20px;
}

.project-content p {
    margin-bottom: 20px;
    font-size: 1rem;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-tech span {
    padding: 5px 10px;
    background: rgba(0, 162, 255, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    font-size: 0.8rem;
    box-shadow: 0 0 5px var(--glow-color);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-content, .project-card {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 15px;
    }

    .intro-text {
        font-size: 4rem;
    }

    .about-content {
        flex-direction: column;
    }

    .project-grid,
    .games-grid {
        grid-template-columns: 1fr !important;
    }

    .project-image {
        height: 250px;
    }

    .project-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .project-tags {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .intro-text {
        font-size: 3rem;
    }
}

.social-stats {
    padding: 2rem;
    margin: 2rem 0 4rem 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(5px);
}

.social-stats h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
    text-shadow: 0 0 15px var(--glow-color);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.stat-card {
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(45deg, #64B5F6, #2196F3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.stat-icon i {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 8px var(--glow-color));
} 