/* General Styles */
body {
    background-color: #0a0a1a;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, 
        rgba(0, 104, 55, 0.7) 0%,  /* Softer Italian green */
        rgba(0, 104, 55, 0.7) 25%,  /* Green fade */
        rgba(255, 255, 255, 0.6) 35%,  /* Soft white start */
        rgba(255, 255, 255, 0.6) 60%,  /* Soft white end */
        rgba(205, 33, 42, 0.7) 70%,  /* Red fade */
        rgba(205, 33, 42, 0.7) 100%  /* Softer Italian red */
    );
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-color: #0a0a1a; /* Dark base to blend with */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, rgba(0, 104, 55, 0.1) 0%, transparent 70%),
        linear-gradient(-45deg, rgba(205, 33, 42, 0.1) 0%, transparent 70%);
    pointer-events: none;
    backdrop-filter: blur(10px);
}

/* Add a text background to ensure readability */
.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section .retro-text,
.hero-section .retro-subtext {
    background: rgba(0, 0, 0, 0.2);
    padding: 10px 20px;
    border-radius: 10px;
    display: inline-block;
    backdrop-filter: blur(5px);
}

/* Typography */
.retro-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 
        0 0 10px rgba(0, 255, 255, 0.8),
        0 0 20px rgba(0, 255, 255, 0.4);
    margin-bottom: 30px;
}

.retro-subtext {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
}

.retro-heading {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Download Button */
.download-btn {
    background: linear-gradient(45deg, #ffd700, #ff8c00);
    border: none;
    padding: 15px 30px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    color: #000;
    letter-spacing: 1px;
}

.download-btn:not(.disabled):hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
    background: linear-gradient(45deg, #ff8c00, #ffd700);
}

.download-btn.disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: linear-gradient(45deg, #808080, #a0a0a0);
}

.review-status {
    color: #ffd700;
    font-size: 0.9rem;
    font-style: italic;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
}

/* What's New Button */
.whats-new-btn {
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
    border: 2px solid rgba(255, 215, 0, 0.3);
    padding: 15px 30px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    color: #ffd700;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
}

.whats-new-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.3));
    color: #ffd700;
    border-color: rgba(255, 215, 0, 0.5);
}

.whats-new-btn i {
    margin-right: 8px;
    animation: twinkle 1.5s infinite;
}

@keyframes twinkle {
    0% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
    100% { opacity: 0.7; transform: scale(1); }
}

/* Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin: 15px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
} 

.feature-card ul li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #fff;
    position: relative;
    padding-left: 25px;
}

.feature-card ul li:before {
    content: '★';
    position: absolute;
    left: 0;
    color: #ffd700;
}

/* App Screenshots */
.screenshot-container {
    position: relative;
    padding: 15px;
    transition: all 0.3s ease;
    width: 50%;
    margin: 0 auto;
}

.app-screenshot {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.screenshot-container:hover .app-screenshot {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.4);
}

.screenshot-caption {
    color: #ffd700;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* App Preview */
.app-preview {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 30px;
    margin: 30px 0;
    border: 2px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

/* Footer */
.footer {
    background: linear-gradient(to right, #000428, #004e92);
    padding: 20px 0;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
}

/* Glow Animation */
@keyframes glow {
    0% { text-shadow: 0 0 10px rgba(0, 255, 255, 0.8), 0 0 20px rgba(0, 255, 255, 0.4); }
    50% { text-shadow: 0 0 20px rgba(0, 255, 255, 0.8), 0 0 30px rgba(0, 255, 255, 0.4); }
    100% { text-shadow: 0 0 10px rgba(0, 255, 255, 0.8), 0 0 20px rgba(0, 255, 255, 0.4); }
}

.glow {
    animation: glow 3s ease-in-out infinite;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .retro-text {
        font-size: 2.5rem;
    }
    
    .retro-subtext {
        font-size: 1.2rem;
    }
    
    .hero-section {
        padding: 50px 0;
    }
    
    .app-screenshot {
        max-width: 45%;
        margin: 0 auto;
        display: block;
    }
    
    .screenshot-container {
        padding: 10px;
        width: 100%;
    }
}

/* RSDH Logo Link */
.rsdh-link {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.rsdh-link:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.rsdh-logo {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
    transition: all 0.3s ease;
}

.rsdh-link:hover .rsdh-logo {
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.5));
}

.rsdh-link p {
    color: #ffd700;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Support Email Link */
.support-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffd700;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.support-email:hover {
    color: #fff;
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.support-email i {
    font-size: 1.2rem;
    color: #ffd700;
}

.support-email:hover i {
    animation: bounce 0.5s ease;
}

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

/* Video Container */
.video-container {
    position: relative;
    padding: 15px;
    transition: all 0.3s ease;
    width: 50%;  /* Same as screenshot container */
    margin: 0 auto;
}

.app-video {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 215, 0, 0.2);
    background-color: #000;
    aspect-ratio: 9/19.5; /* Match iPhone screenshot aspect ratio */
    object-fit: cover;
}

.video-container:hover .app-video {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 215, 0, 0.4);
}

/* Update responsive styles for the new 3-column layout */
@media (max-width: 768px) {
    .video-container {
        width: 100%;
        padding: 10px;
    }
    
    .app-video {
        max-width: 45%;
        margin: 0 auto;
        display: block;
    }
    
    .col-md-4 {
        margin-bottom: 30px;
    }
}

/* Changelog Section */
.changelog-section {
    background: rgba(10, 10, 26, 0.8);
    border-radius: 20px;
    padding: 40px;
    margin: 50px 0;
    border: 2px solid rgba(255, 215, 0, 0.2);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.changelog-entry {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 4px solid #ffd700;
    transition: all 0.3s ease;
}

.changelog-version {
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.changelog-date {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

.changelog-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.changelog-list > li {
    margin-bottom: 20px;
    padding-left: 20px;
    position: relative;
}

.changelog-list li ul {
    margin-top: 8px;
    list-style: none;
    padding-left: 20px;
}

.changelog-list li ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.changelog-list > li::before {
    content: '►';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-size: 0.8rem;
}

.changelog-list li ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-size: 0.8rem;
}

.changelog-note {
    color: #ffd700;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 20px;
    padding: 10px 15px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 8px;
    display: inline-block;
    border-left: 3px solid #ffd700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
} 