/* ===== GLOBAL STYLES ===== */
:root {
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --text-color: #334155;
    --border-radius: 16px;
    --shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --glow: 0 0 20px rgba(99, 102, 241, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== NAVIGATION ===== */
.navbar {
    backdrop-filter: blur(10px);
    background: rgba(30, 41, 59, 0.95) !important;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-link {
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color) !important;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* ===== horr SECTION ===== */
.horr-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #dee2f3 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: white;
}

.horr-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.horr-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.horr-description {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
}

.glow-btn {
    box-shadow: var(--glow);
    transition: all 0.3s ease;
}

.glow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.6);
}

/* ===== SECTIONS ===== */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.2rem;
    opacity: 0.7;
    margin-bottom: 3rem;
}

/* ===== GAME CARDS ===== */
.game-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.game-image {
    height: 200px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.image-placeholder {
    text-align: center;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-content {
    padding: 2rem;
}

.game-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.game-description {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.game-stats {
    margin-bottom: 1.5rem;
}

.game-stats .badge {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.game-actions .btn {
    border-radius: 25px;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.game-actions .btn:hover {
    transform: translateY(-2px);
}

/* .img-fluid {

}

.img-fluid:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
} */

/* ===== FEATURES ===== */
.feature-card {
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-card h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

/* ===== STATS ===== */
.stats-row {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item h4 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-weight: 600;
    opacity: 0.7;
    margin: 0;
}

/* ===== CONTACT ===== */
.contact-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    min-width: 250px;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.contact-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-item h5 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

/* ===== FOOTER ===== */
.custom-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h5 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #cccccc;
    margin-bottom: 0;
    line-height: 1.6;
}

.footer-content {
    text-align: right;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #cccccc;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-copyright {
    color: #999999;
    font-size: 0.9rem;
    margin: 0;
    text-align: right;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .horr-title {
        font-size: 2.5rem;
    }
    
    .horr-description {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
    }
    
    .horr-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .horr-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .horr-title {
        font-size: 2rem;
    }
    
    .game-content {
        padding: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .contact-item {
        padding: 1.5rem;
        min-width: 200px;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    top: 80%;
    left: 30%;
    animation-delay: 4s;
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* ===== UTILITIES ===== */
.bg-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.border-gradient {
    border: 2px solid;
    border-image: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) 1;
}

/* ===== LOADING ANIMATIONS ===== */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* ===== APP DETAIL PAGES ===== */
.app-horr {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 120px 0 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.app-icon-container {
    display: flex;
    justify-content: flex-start;
}

.app-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.app-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-preview {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    position: relative;
    width: 250px;
    height: 500px;
    background: #1a1a1a;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.phone-mockup:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.phone-content {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
}

.phone-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== SCREENSHOTS ===== */
.screenshot-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: white;
}

.screenshot-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.screenshot-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.screenshot-card:hover img {
    transform: scale(1.05);
}

.screenshot-card-small {
    max-width: 320px;
    margin: 0 auto;
}

.screenshot-card-small img {
    width: 320px;
    height: 480px;
    object-fit: cover;
    aspect-ratio: 320/480;
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.screenshot-card:hover .screenshot-overlay {
    transform: translateY(0);
}

.screenshot-overlay h6 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.screenshot-overlay p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ===== REVIEWS ===== */
.review-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.review-stars {
    margin-bottom: 1rem;
}

.review-stars i {
    color: #ffc107;
    margin-right: 0.25rem;
    font-size: 1.1rem;
}

.review-card p {
    flex-grow: 1;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #555;
}

.review-author strong {
    color: var(--dark-color);
    font-weight: 600;
}

.review-author small {
    display: block;
    margin-top: 0.25rem;
}

/* ===== USE CASES ===== */
.use-case-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.use-case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.use-case-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.use-case-card h5 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.use-case-card p {
    color: #666;
    margin: 0;
}

/* ===== LEGAL PAGES ===== */
.legal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.legal-content {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}

.content-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.content-section:last-child {
    border-bottom: none;
}

.content-section h2 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.content-section h4 {
    color: var(--dark-color);
    font-weight: 600;
    margin: 2rem 0 1rem;
    font-size: 1.3rem;
}

.content-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    color: #555;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* ===== RESPONSIVE DESIGN FOR NEW COMPONENTS ===== */
@media (max-width: 768px) {
    .app-horr {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .app-stats {
        justify-content: center;
        gap: 1rem;
    }
    
    .download-buttons {
        justify-content: center;
        flex-direction: column;
    }
    
    .download-buttons .btn {
        width: 100%;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
        transform: none;
    }
    
    .app-icon-container {
        justify-content: center;
    }
    
    .screenshot-overlay {
        position: static;
        background: rgba(0, 0, 0, 0.9);
        transform: none;
        padding: 1rem;
    }
    
    .screenshot-card-small {
        max-width: 240px;
    }
    
    .screenshot-card-small img {
        width: 240px;
        height: 360px;
    }
    
    .review-card, .use-case-card {
        padding: 1.5rem;
    }
    
    .use-case-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .legal-content {
        font-size: 0.95rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .content-section h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .app-horr {
        padding: 80px 0 40px;
    }
    
    .app-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .phone-mockup {
        width: 180px;
        height: 360px;
    }
    
    .app-stats {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .content-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
    
    .screenshot-card-small {
        max-width: 200px;
    }
    
    .screenshot-card-small img {
        width: 200px;
        height: 300px;
    }
}

/* ===== horr ENHANCEMENTS ===== */
.horr-image {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-phone {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: float 3s ease-in-out infinite;
    z-index: 2;
    position: relative;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.2);
    animation: float 4s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 25%;
    right: 20%;
    animation-delay: 1.5s;
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 25%;
    animation-delay: 3s;
}

/* ===== ABOUT SECTION ===== */
.about-content h3 {
    color: var(--primary-color);
    font-weight: 700;
}

.mission-point {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: #555;
}

.mission-point i {
    font-size: 1.2rem;
}

.stats-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: #666;
    font-weight: 600;
    margin: 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.company-culture-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    text-align: center;
    padding: 1rem 0.5rem;
    line-height: 1.4;
}

/* ===== DEVELOPER SECTION ===== */
#developer {
    background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
    color: white !important;
}

#developer * {
    color: white !important;
}

#developer .developer-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: white !important;
}

#developer .developer-card * {
    color: white !important;
}

#developer .developer-avatar {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 4rem;
    color: white !important;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

#developer .developer-info h3 {
    color: white !important;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

#developer .developer-title {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

#developer .developer-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

#developer .skill-tag {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

#developer .developer-story h4 {
    font-weight: 700;
    color: white !important;
}

#developer .developer-story p {
    color: rgba(255, 255, 255, 0.9) !important;
}

#developer .developer-achievements {
    margin-top: 2rem;
}

#developer .achievement-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

#developer .achievement-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #ffc107 !important;
}

#developer .achievement-item span {
    font-weight: 500;
    color: white !important;
}

/* ===== RESPONSIVE DESIGN FOR NEW COMPONENTS ===== */
@media (max-width: 768px) {
    .horr-image {
        height: 250px;
        margin-top: 3rem;
    }
    
    .floating-phone {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .floating-element {
        font-size: 1.5rem;
    }
    
    .stats-container {
        margin-top: 3rem;
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    #developer .developer-card {
        margin-bottom: 3rem;
        text-align: center;
        color: white !important;
    }
    
    #developer .developer-avatar {
        width: 100px;
        height: 100px;
        font-size: 3rem;
        color: white !important;
    }
    
    #developer .skill-tag {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
        color: white !important;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-copyright {
        text-align: center;
    }
}

@media (max-width: 576px) {
    #developer .developer-skills {
        gap: 0.3rem;
    }
    
    #developer .skill-tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
        color: white !important;
    }
    
    #developer .achievement-item {
        padding: 0.6rem;
    }
    
    #developer .achievement-item i {
        font-size: 1.2rem;
        margin-right: 0.8rem;
        color: #ffc107 !important;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
} 