/*
Theme Name: Premium Download Theme
Theme URI: http://example.com/premium-download-theme
Author: Your Name
Author URI: http://example.com
Description: A custom WordPress theme for premium download pages.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: premium-download-theme
*/

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;600&display=swap');

/* CSS Variables */
:root {
    --primary-gradient: linear-gradient(135deg, #1a1a2e, #16213e, #1a1a2e);
    --container-bg: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.1);
    --text-color: #fff;
    --highlight-color: #a5b4fc;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

body {
    min-height: 100vh;
    background: var(--primary-gradient);
    padding: 2rem;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--container-bg);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    animation: fadeIn 0.6s ease-out;
}

h1 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
    background: linear-gradient(to right, #fff, var(--highlight-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding: 1rem;
    position: relative;
}

h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: linear-gradient(to right, #4f46e5, var(--highlight-color));
    border-radius: 2px;
}

/* Note Section */
.note {
    text-align: center;
    padding: 1.5rem;
    margin: 2rem 0;
    background: rgba(79, 70, 229, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(79, 70, 229, 0.2);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.note::before {
    content: '💡';
    font-size: 1.4rem;
}

/* Download Buttons */
.download-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.download-grid a {
    text-decoration: none;
}

.download-grid a .btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: transparent;
    border: 2px solid currentColor;
    color: white;
}

.download-grid a .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Specific Button Styles */
.download-grid a:nth-child(1) .btn {
    background: linear-gradient(135deg, #0ebac3, #09d261);
    color: white;
}

.download-grid a:nth-child(2) .btn {
    background: linear-gradient(135deg, #ed0b0b, #f2d152);
    color: white;
}

.download-grid a:nth-child(3) .btn {
    background: linear-gradient(135deg, #fcb900 0%, #000000);
    color: #fdf8f2;
}

.download-grid a:nth-child(4) .btn {
    background: linear-gradient(135deg, #2ea1cf, #ff19d0);
    color: white;
}

.download-grid a:nth-child(5) .btn {
    background: linear-gradient(135deg, #045872d1, #ff6380ba);
    color: white;
}

/* Icon Spacing */
.btn .fa-download {
    margin-left: 0.3rem;
}

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

    h1 {
        font-size: 1.5rem;
    }

    .note {
        font-size: 0.9rem;
        padding: 1rem;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .download-grid {
        gap: 1rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
}

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

/* Accessibility */
.btn:focus {
    outline: 2px dashed var(--highlight-color);
    outline-offset: 4px;
}

/* Screen Reader */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.entry-content button {
    margin: 5px;
    padding: 10px;
    font-size: 16px;
}
