/* ===== GLOBAL STYLES ===== */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
background: #f8f9fa;
color: #212529;
line-height: 1.6;
overflow-x: hidden;
width: 100%;
height: 100%;
/* Add your background pattern here */
background-color: #ffffff;
background-image: radial-gradient(rgba(12, 12, 12, 0.171) 2px, transparent 0);
background-size: 30px 30px;
background-position: -5px -5px;
}

.container {
max-width: 1400px;
margin: 0 auto;
padding: 0 2rem;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
font-weight: 700;
letter-spacing: -0.02em;
line-height: 1.2;
}

h1 {
font-size: clamp(2rem, 7vw, 5rem);
font-weight: 800;
letter-spacing: -5px;
word-spacing: -2px;
line-height: 0.9;
}

h2 {
font-size: 2rem;
margin-bottom: 1rem;
}

h3 {
font-size: 1.5rem;
}

p {
margin-bottom: 1rem;
}

/* ===== NAVIGATION ===== */
.nav {
top: 0;
left: 0;
right: 0;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
z-index: 1000;
padding: 1.5rem 0;
border-bottom: 1px solid #e9ecef;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-content {
display: flex;
justify-content: center;
align-items: center;
}

.logo {
font-size: 1.5rem;
font-weight: 800;
letter-spacing: -0.02em;
text-decoration: none;
color: #212529;
}
.top-section {
    width: 100%;
    display: flex
;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}
.nav-links {
display: flex;
gap: 2rem;
align-items: center;
}

.nav-link {
text-decoration: none;
color: #6c757d;
font-weight: 500;
transition: color 0.2s;
font-size: 0.9rem;
text-transform: uppercase;
letter-spacing: 0.05em;
}

.nav-link:hover {
color: #212529;
}

.nav-link.active {
color: #212529;
font-weight: 600;
}

/* ===== HERO SECTION ===== */
.hero {
padding: 8rem 0 0rem;
text-align: center;
background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -4px;
    word-spacing: -2px;
    line-height: 0.9;
    display: flex
;
    flex-wrap: wrap;
    justify-content: center;
}

.hero p {
font-size: 1.2rem;
color: #6c757d;
max-width: 600px;
margin: 0 auto 3rem;
font-weight: 400;
}

.title-one {
color: #212529;
}

.title-two {
background: #dc3545;
color: #fff;
padding: 0.2rem 1rem;
border-radius: 0.45rem;
margin-left: 0.5rem;
}

/* ===== BUNDLE SECTION ===== */
.bundle-section {
background:black;
padding: 2rem 0;


}

.bundle-card {
border-radius: 16px;
padding: 3rem 2rem;
text-align: center;
position: relative;
overflow: hidden;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.intro-content.one {
    border-bottom: 2px solid #e9e9e9;
}


.bundle-title {
font-size: 1.2rem;
font-weight: 700;
color: #856404;
margin-bottom: 0.5rem;
text-transform: uppercase;
letter-spacing: 0.1em;
}
.intro.card {
    width: 90%;
    display: flex
;
    flex-direction: column;
    margin: 3rem auto;
}
.intro-content.two {
    display: flex
;
    align-items: center;
    gap: 3rem;
}
.bundle-subtitle {
font-size: 2.5rem;
font-weight: 800;
color: #ffffff;
margin-bottom: 1rem;
line-height: 1.2;
}
h3.bundle-subtitle {
    display: flex
;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.bundle-description {
font-size: 1.1rem;
color: #ffffff;
margin-bottom: 1.5rem;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}

.bundle-price {
font-size: 3rem;
font-weight: 800;
color: #dc3545;
margin-bottom: 0.5rem;
}

.bundle-savings {
font-size: 1rem;
color: #198754;
font-weight: 600;
margin-bottom: 2rem;
}

.btn-bundle {
font-size: 1.2rem;
padding: 1rem 2rem;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 0.05em;
background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
border: none;
box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.btn-bundle:hover {
background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

/* ===== CARDS ===== */
.card {
background: #fff;
border: 1px solid #e9ecef;
border-radius: 12px;
overflow: hidden;
transition: all 0.3s ease;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.card:hover {
transform: translateY(-4px);
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-body {
padding: 1.5rem;
}

.card-title {
font-size: 1.3rem;
font-weight: 600;
margin-bottom: 0.5rem;
letter-spacing: -0.01em;
color: #212529;
}

.card-text {
color: #6c757d;
font-size: 0.9rem;
margin-bottom: 1.5rem;
}
button.btn.btn-primary.btn-full.instructions {
    width: auto !important;
}
a.btn.btn-primary.btn-full.buy {
    background: #212529;
}
.download-container {
    background: #fff;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    max-width: 600px;
    margin: 2rem auto;
}

.download-image {
    width: 300px;
    height: 300px;
    border-radius: 12px;
    object-fit: cover;
    margin: 0 auto 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.download-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #212529;
    letter-spacing: -0.02em;
}

.file-count {
    color: #6c757d;
    font-size: 1.1rem;
}

.timer-container {
    margin: 2rem 0;
}

.timer-text {
    font-size: 1.2rem;
    color: #212529;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.timer-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.timer-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.download-btn {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.download-btn.show {
    opacity: 1;
    transform: translateY(0);
}

.loading-text {
    color: #6c757d;
    font-size: 1rem;
    margin-top: 1rem;
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.back-link:hover {
    color: #212529;
}
.intro {
    display: flex
;
    justify-content: center;
    gap: 2rem;
    align-items: center;
    margin: 3rem 0rem;
    font-size: 1.3rem;
    padding: 1rem;
}

/* ===== PRODUCTS ===== */
.products {
padding: 4rem 0;
}

.section-title {
font-size: 2rem;
font-weight: 700;
margin-bottom: 3rem;
text-align: center;
letter-spacing: -0.02em;
color: #212529;
}

.products-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 2rem;
margin-bottom: 4rem;
}
.bundle-content {
padding: 1rem;
display: flex
;
flex-direction: column;
justify-content: center;
align-items: center;
}
.product-card {
background: #fff;
border: 1px solid #e9ecef;
border-radius: 8px;
overflow: hidden;
transition: all 0.3s ease;
position: relative;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.card {
background: #fff;
border: 1px solid #e9ecef;
border-radius: 8px;
overflow: hidden;
transition: all 0.3s ease;
position: relative;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}
.product-card:hover {
transform: translateY(-4px);
border-color: #dee2e6;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-image {
width: 100%;
height: 350px;
object-fit: cover;
background: #f8f9fa;
}

.product-image-placeholder {
width: 100%;
height: 200px;
background: #f5f5f5;
display: flex;
align-items: center;
justify-content: center;
border-radius: 8px;
color: #999;
}

.placeholder-content {
text-align: center;
}

.product-content {
padding: 1.5rem;
}

.product-title {
font-size: 1.3rem;
font-weight: 600;
margin-bottom: 0.5rem;
letter-spacing: -0.01em;
color: #212529;
}

.product-price {
font-size: 1.5rem;
font-weight: 700;
color: #212529;
margin-bottom: 1rem;
}

.product-description {
color: #6c757d;
font-size: 0.9rem;
margin-bottom: 1.5rem;
}

/* ===== FORMS ===== */
.form-group {
margin-bottom: 1.5rem;
text-align: left;
}

.form-label {
display: block;
margin-bottom: 0.5rem;
font-weight: 600;
font-size: 0.9rem;
text-transform: uppercase;
letter-spacing: 0.05em;
color: #495057;
}

.form-input {
width: 100%;
padding: 1rem;
background: #fff;
border: 1px solid #dee2e6;
border-radius: 8px;
color: #212529;
font-size: 1rem;
font-family: inherit;
transition: all 0.2s;
}

.container.header {
    display: flex
;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}
.telegrambutton {
    display: flex
;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
p.telegram-text {
    color: #29b7f7;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.1rem;
}
.form-input:focus {
outline: none;
border-color: #0d6efd;
background: #fff;
box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.form-input::placeholder {
color: #adb5bd;
}

/* ===== BUTTONS ===== */
.btn {
display: inline-block;
padding: 0.8rem 1.5rem;
text-decoration: none;
font-weight: 600;
border-radius: 6px;
transition: all 0.2s;
font-size: 0.9rem;
text-transform: uppercase;
letter-spacing: 0.05em;
border: none;
cursor: pointer;
text-align: center;
font-family: inherit;
}

.btn-primary {
    background: #dc3545;
    color: #fff;
}
.product-info {
    display: flex
;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.btn-primary:hover {
background: #bb2d3b;
transform: translateY(-1px);
box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3);
}

.btn-outline {
background: transparent;
color: #0d6efd;
border: 1px solid #0d6efd;
}

.btn-outline:hover {
background: #0d6efd;
color: #fff;
border-color: #0d6efd;
}

.btn-success {
background: #198754;
color: #fff;
}

.btn-success:hover {
background: #157347;
transform: translateY(-1px);
}

.btn-danger {
background: #dc3545;
color: #fff;
}

.btn-danger:hover {
background: #bb2d3b;
transform: translateY(-1px);
}

.btn-secondary {
background: #6c757d;
color: #fff;
}

.btn-secondary:hover {
background: #5c636a;
}

.btn-full {
width: 100%;
}

/* ===== ALERTS ===== */
.alert {
padding: 1rem;
border-radius: 8px;
margin-bottom: 1.5rem;
font-size: 0.9rem;
border: 1px solid transparent;
}

.alert-success {
background: rgba(25, 135, 84, 0.1);
border-color: rgba(25, 135, 84, 0.3);
color: #198754;
}

.alert-danger {
background: rgba(220, 53, 69, 0.1);
border-color: rgba(220, 53, 69, 0.3);
color: #dc3545;
}

.alert-warning {
background: rgba(255, 193, 7, 0.1);
border-color: rgba(255, 193, 7, 0.3);
color: #ffc107;
}

.alert-info {
background: rgba(13, 202, 240, 0.1);
border-color: rgba(13, 202, 240, 0.3);
color: #0dcaf0;
}

/* ===== LOGIN/REGISTER CARDS ===== */
.login-card, .register-card {
background: #fff;
border: 1px solid #e9ecef;
border-radius: 12px;
padding: 3rem 2rem;
text-align: center;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
max-width: 400px;
width: 100%;
margin: 0 auto;
}

.auth-container {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 2rem;
}

.links {
margin-top: 2rem;
padding-top: 2rem;
border-top: 1px solid #e9ecef;
}

.link {
color: #6c757d;
text-decoration: none;
font-size: 0.9rem;
transition: color 0.2s;
display: inline-block;
margin: 0.5rem 0;
}

.link:hover {
color: #212529;
}

.title {
font-size: 1.5rem;
font-weight: 700;
margin-bottom: 0.5rem;
letter-spacing: -0.01em;
color: #212529;
}

.subtitle {
color: #6c757d;
margin-bottom: 2rem;
font-size: 0.95rem;
}

/* ===== DASHBOARD ===== */
.dashboard-container {
padding-top: 2rem;
}

.dashboard-header {
margin-bottom: 2rem;
}

.dashboard-title {
color: #212529;
margin-bottom: 0.5rem;
}

.dashboard-subtitle {
color: #6c757d;
}

.purchase-card {
height: 100%;
transition: all 0.3s ease;
}

.purchase-card:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.download-status {
margin-bottom: 1rem;
}

.download-badge {
font-size: 0.75rem;
padding: 0.25rem 0.5rem;
border-radius: 4px;
margin-right: 0.5rem;
}

.download-badge.available {
background: #d1e7dd;
color: #0f5132;
}

.download-badge.used {
background: #f8d7da;
color: #721c24;
}

/* ===== EMPTY STATES ===== */
.empty-state {
text-align: center;
padding: 4rem 0;
}

.empty-state h3 {
font-size: 2rem;
font-weight: 600;

color: #6c757d;
}

.empty-state p {
color: #adb5bd;
margin-bottom: 2rem;
}

.empty-state-icon {
font-size: 3rem;
color: #dee2e6;
margin-bottom: 1rem;
}

/* ===== FOOTER ===== */
.footer {
background: #f8f9fa;
padding: 3rem 0;
margin-top: 4rem;
border-top: 1px solid #e9ecef;
}

.footer-content {
text-align: center;
color: #6c757d;
}

/* ===== UTILITIES ===== */
.text-center {
text-align: center;
}

.text-muted {
color: #6c757d !important;
}

.text-primary {
color: #0d6efd !important;
}

.text-success {
color: #198754 !important;
}

.text-danger {
color: #dc3545 !important;
}

.text-warning {
color: #ffc107 !important;
}

.bg-light {
background-color: #f8f9fa !important;
}

.bg-white {
background-color: #fff !important;
}

.shadow {
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-sm {
box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.rounded {
border-radius: 0.375rem !important;
}

.rounded-lg {
border-radius: 0.5rem !important;
}

/* ===== LOADING ANIMATION ===== */
.loading {
display: inline-block;
width: 20px;
height: 20px;
border: 2px solid #e9ecef;
border-radius: 50%;
border-top-color: #0d6efd;
animation: spin 1s ease-in-out infinite;
}

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
.container {
    padding: 0 1rem;
}

.nav-links {
    gap: 1rem;
}

.hero {
    padding: 6rem 0 3rem;
}

.products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.product-card {
    width:90%;
    margin: 0 auto;
}

.login-card, .register-card {
    padding: 2rem 1.5rem;
    margin: 1rem;
}

.auth-container {
    padding: 1rem;
}
.container.header {
    justify-content: center !important;
 
}
}

@media (max-width: 480px) {
.nav-content {
    flex-direction: column;
    gap: 1rem;
}

.nav-links {
    flex-wrap: wrap;
    justify-content: center;
}

.hero h1 {
    font-size: 2.5rem;
    letter-spacing: -2px;
}

.btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.8rem;
}
}

/* ===== PRINT STYLES ===== */
@media print {
.nav, .footer, .btn {
    display: none !important;
}

body {
    background: #fff !important;
    color: #000 !important;
}

.card, .product-card {
    border: 1px solid #000 !important;
    box-shadow: none !important;
}
} 