/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #6366f1;
}

.nav-logo i {
    margin-right: 10px;
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #6366f1;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #6366f1;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(45deg, #ffd700, #ff6b6b, #4ecdc4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(180deg); }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.btn {
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(45deg, #ff6b6b, #ffd700);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.floating-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
    width: 280px;
}

.floating-card.delay-1 {
    animation-delay: -2s;
}

.floating-card.delay-2 {
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

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

.card-content h3 {
    margin: 1rem 0 0.5rem 0;
    font-size: 1.2rem;
}

.card-content p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.dart-icon, .balloon-icon, .puzzle-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Floating Shapes */
.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float-shape 20s linear infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 15%;
    animation-delay: -7s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: -14s;
}

@keyframes float-shape {
    0% { transform: translateY(0px) rotate(0deg); }
    100% { transform: translateY(-1000px) rotate(360deg); }
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    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="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    color: #1e293b;
    position: relative;
    z-index: 2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    border-radius: 2px;
}

/* Timeline Layout */
.features-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #6366f1, #8b5cf6, #ec4899);
    border-radius: 2px;
    transform: translateX(-50%);
}

.timeline-line::before,
.timeline-line::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
}

.timeline-line::before {
    top: -10px;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.5);
}

.timeline-line::after {
    bottom: -10px;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

/* Feature Items */
.feature-item {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
}

.feature-item.left {
    flex-direction: row;
    padding-right: 50%;
}

.feature-item.right {
    flex-direction: row-reverse;
    padding-left: 50%;
}

.feature-item:nth-child(even) {
    flex-direction: row-reverse;
    padding-left: 50%;
    padding-right: 0;
}

.feature-item:nth-child(odd) {
    flex-direction: row;
    padding-right: 50%;
    padding-left: 0;
}

/* Feature Markers */
.feature-marker {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
}

.marker-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
    position: relative;
    z-index: 2;
}

.marker-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid #6366f1;
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Feature Content */
.feature-content {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    position: relative;
    max-width: 400px;
    transition: all 0.3s ease;
}

.feature-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
}

.feature-item.left .feature-content::before,
.feature-item:nth-child(odd) .feature-content::before {
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 15px 0 15px 15px;
    border-color: transparent transparent transparent white;
}

.feature-item.right .feature-content::before,
.feature-item:nth-child(even) .feature-content::before {
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 15px 15px 15px 0;
    border-color: transparent white transparent transparent;
}

.feature-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.feature-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 1rem 0 1rem 0;
    color: #1e293b;
    padding-left: 50px;
}

.feature-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-highlight {
    display: inline-block;
    background: linear-gradient(45deg, #fef3c7, #fde68a);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid #f59e0b;
}

.highlight-text {
    color: #92400e;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Gameplay Section */
.gameplay {
    padding: 6rem 0;
    background: white;
}

.gameplay-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.gameplay-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1e293b;
}

.gameplay-description {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.gameplay-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #6366f1;
}

.stat-label {
    font-size: 0.9rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gameplay-showcase {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.showcase-item {
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid #6366f1;
    transition: all 0.3s ease;
    cursor: pointer;
}

.showcase-item:hover {
    transform: translateX(10px);
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
}

.showcase-item.active {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
}

.showcase-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.showcase-content p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Download Section */
.download {
    padding: 6rem 0;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    text-align: center;
}

.download-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.download-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: white;
    color: #333;
    text-decoration: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    min-width: 200px;
}

.download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.download-btn i {
    font-size: 2rem;
}

.btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.small-text {
    font-size: 0.7rem;
    opacity: 0.7;
}

.large-text {
    font-size: 1.1rem;
    font-weight: 600;
}

.download-features {
    display: flex !important;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    visibility: visible !important;
    opacity: 1 !important;
}

.feature-item {
    display: flex !important;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    opacity: 1 !important;
    color: white !important;
    padding: 0 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    visibility: visible !important;
}

.feature-item:hover {
    transform: translateY(-2px);
}

.feature-item i {
    color: #6366f1;
    font-size: 1.2rem;
}

.fa-solid, .fas {
    margin: 6px 15px;
}

.feature-item span {
    font-weight: 500;
    color: white !important;
    display: inline-block !important;
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3, .footer-section h4 {
    margin-bottom: 1rem;
    color: #6366f1;
}

.footer-section p {
    opacity: 0.8;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #6366f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #8b5cf6;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .gameplay-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gameplay-stats {
        justify-content: center;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .download-features {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 0 1.5rem;
        font-size: 0.9rem;
    }
    
    .floating-card {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .download-features {
        gap: 1rem;
    }
    
    .feature-item {
        padding: 0 1.3rem;
        font-size: 0.85rem;
    }
    
    .feature-item i {
        font-size: 1rem;
    }
} 

/* Responsive Design for Timeline */
@media (max-width: 768px) {
    .timeline-line {
        left: 30px;
    }
    
    .feature-item {
        padding-left: 60px !important;
        padding-right: 0 !important;
        flex-direction: row !important;
    }
    
    .feature-item:nth-child(even) {
        flex-direction: row !important;
        padding-left: 60px !important;
        padding-right: 0 !important;
    }
    
    .feature-marker {
        left: 30px;
    }
    
    .feature-content::before {
        left: -15px !important;
        right: auto !important;
        border-width: 15px 15px 15px 0 !important;
        border-color: transparent white transparent transparent !important;
    }
    
    .feature-content {
        max-width: none;
        margin-left: 20px;
    }
    
    .features-timeline {
        max-width: none;
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .feature-content {
        padding: 1.5rem;
        margin-left: 10px;
    }
    
    .feature-content h3 {
        font-size: 1.2rem;
        padding-left: 40px;
    }
    
    .feature-number {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
        top: -12px;
        left: 15px;
    }
} 

/* Screenshots Section */
.screenshots {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    position: relative;
}

.screenshots::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23cbd5e1" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.screenshots-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-top: 1rem;
    font-weight: 400;
}

/* App Icon Section */
.app-icon-section {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.icon-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: white;
    padding: 2rem 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.icon-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.app-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.icon-container:hover .app-icon {
    transform: scale(1.1) rotate(5deg);
}

.icon-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.icon-info p {
    color: #64748b;
    font-size: 1rem;
    margin: 0;
}

/* Screenshots Gallery */
.screenshots-gallery {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    width: 250px;
    height: auto;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* Item Info */
.item-info {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
}

.item-number {
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.item-category {
    background: rgba(255, 255, 255, 0.9);
    color: #6366f1;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.screenshot-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover .screenshot-img {
    transform: scale(1.05);
}

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.95), rgba(139, 92, 246, 0.95));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 1.5rem;
}

.gallery-item:hover .item-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    width: 100%;
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.overlay-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.4;
}

.overlay-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.overlay-actions i {
    font-size: 1.8rem;
    opacity: 0.8;
}

.overlay-actions span {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}



/* Responsive Design for Screenshots */
@media (max-width: 1200px) {
    .screenshots-gallery {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .gallery-container {
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .screenshots-gallery {
        padding: 0 1rem;
    }
    
    .gallery-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .icon-container {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem 2rem;
        gap: 1rem;
    }
    
    .app-icon {
        width: 60px;
        height: 60px;
    }
    
    .icon-info h3 {
        font-size: 1.3rem;
    }
    
    .screenshots-gallery {
        padding: 0 1rem;
    }
    
    .gallery-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .screenshots-gallery {
        padding: 0 0.5rem;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .icon-container {
        padding: 1rem 1.5rem;
    }
    
    .app-icon {
        width: 50px;
        height: 50px;
    }
    

    
    .item-info {
        top: 10px;
        left: 10px;
        gap: 6px;
    }
    
    .item-number {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .item-category {
        padding: 4px 10px;
        font-size: 0.7rem;
    }
} 