/* Valebyte Index Page Styles */

/* News & Announcements Section */
.news-announcements {
    background: rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 0;
}

.news-container {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 24px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.news-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.news-item:hover {
    background: rgba(255, 165, 0, 0.15);
    border-color: rgba(255, 165, 0, 0.3);
}

.news-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    font-weight: bold;
}

.news-content h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #ffa500;
}

.news-content p {
    margin: 2px 0 0 0;
    font-size: 12px;
    color: #e0e0e0;
}

.news-link {
    color: #ffa500;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 8px;
    border: 1px solid rgba(255, 165, 0, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.news-link:hover {
    background: rgba(255, 165, 0, 0.1);
    color: #ff8c00;
}

.telegram-block, .chat-block {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.telegram-block:hover {
    background: rgba(0, 136, 204, 0.1);
    border-color: rgba(0, 136, 204, 0.3);
    color: #0088cc;
}

.chat-block:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    color: #00d4ff;
}

.telegram-icon, .chat-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.block-content h5 {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
}

.block-content p {
    margin: 2px 0 0 0;
    font-size: 11px;
    opacity: 0.8;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 153, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url("data:image/svg+xml,<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 100 100\"><defs><pattern id=\"grid\" width=\"10\" height=\"10\" patternUnits=\"userSpaceOnUse\"><path d=\"M 10 0 L 0 0 0 10\" fill=\"none\" stroke=\"rgba(255,255,255,0.05)\" stroke-width=\"0.5\"/></pattern></defs><rect width=\"100\" height=\"100\" fill=\"url(%23grid)\"/></svg>");
    opacity: 0.3;
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-1%, -1%) rotate(0.5deg); }
    50% { transform: translate(1%, -2%) rotate(-0.5deg); }
    75% { transform: translate(-2%, 1%) rotate(0.3deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(45deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.hero-subtitle {
    font-size: 20px;
    color: #b0b0b0;
    margin-bottom: 32px;
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    font-size: 18px;
    color: #e0e0e0;
}

.flag {
    width: 32px;
    height: 24px;
    border-radius: 4px;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 16px;
    color: #e0e0e0;
}

.benefit-icon {
    color: #00ff88;
    font-size: 18px;
    font-weight: bold;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.plan-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.plan-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #00a8cc);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.15);
}

.plan-card:hover::before {
    opacity: 1;
}

.plan-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.plan-card .price {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
    background: linear-gradient(45deg, #00d4ff, #00a8cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-card .spec {
    font-size: 13px;
    color: #b0b0b0;
    margin-bottom: 5px;
}

.order-btn {
    background: linear-gradient(45deg, #00d4ff, #00a8cc);
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    width: 100%;
    font-size: 13px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 212, 255, 0.3);
}

.order-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.4);
}

.view-all-link {
    text-align: center;
    margin-top: 20px;
}

.view-all-link a {
    color: #00d4ff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    border-radius: 6px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.view-all-link a:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: translateX(4px);
    border-color: rgba(0, 212, 255, 0.4);
}

/* Promo Section */
.promo-section {
    background: rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 80px;
}

.promo-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.promo-text {
    font-size: 20px;
    font-weight: 600;
    color: #00d4ff;
    display: flex;
    align-items: center;
    gap: 12px;
}

.coupon-code {
    background: rgba(0, 212, 255, 0.1);
    border: 2px dashed #00d4ff;
    padding: 8px 16px;
    border-radius: 8px;
    font-family: "Courier New", monospace;
    font-weight: 700;
    color: #00d4ff;
    position: relative;
    user-select: all;
    cursor: pointer;
    transition: all 0.3s ease;
}

.coupon-code:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: scale(1.05);
}

.coupon-code::before,
.coupon-code::after {
    content: "✂";
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    color: #00d4ff;
    font-size: 12px;
    opacity: 0.6;
}

.coupon-code::before {
    left: -12px;
}

.coupon-code::after {
    right: -12px;
    transform: translateY(-50%) rotate(-45deg);
}

.sla-text {
    font-size: 20px;
    font-weight: 600;
    color: #00ff88;
}

/* Dedicated Servers */
.dedicated-section {
    margin-bottom: 80px;
}

.dedicated-section h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;
    background: linear-gradient(45deg, #ffffff, #e0e0e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dedicated-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.dedicated-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.dedicated-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffa500, #ff8c00);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dedicated-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 165, 0, 0.3);
    box-shadow: 0 15px 35px rgba(255, 165, 0, 0.15);
}

.dedicated-card:hover::before {
    opacity: 1;
}

.dedicated-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.dedicated-card .price {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dedicated-card .spec {
    font-size: 14px;
    color: #b0b0b0;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 0;
}

.dedicated-card .spec-label {
    font-weight: 500;
    color: #e0e0e0;
}

.dedicated-card .spec-value {
    color: #b0b0b0;
}

.dedicated-card .order-btn {
    background: linear-gradient(45deg, #ffa500, #ff8c00);
    padding: 10px 20px;
    font-size: 14px;
}

.dedicated-card .order-btn:hover {
    box-shadow: 0 8px 20px rgba(255, 165, 0, 0.3);
}

/* Features Card */
.features-card {
    background: rgba(255, 165, 0, 0.05);
    border: 1px solid rgba(255, 165, 0, 0.2);
}

.features-card::before {
    background: linear-gradient(90deg, #00d4ff, #00a8cc);
}

.features-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.15);
}

.features-card h3 {
    color: #ffa500;
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: #e0e0e0;
}

.feature-icon-small {
    color: #00ff88;
    font-size: 16px;
    font-weight: bold;
    width: 16px;
    text-align: center;
}

.dedicated-view-all {
    text-align: center;
    margin-top: 25px;
}

.dedicated-view-all a {
    color: #ffa500;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    background: rgba(255, 165, 0, 0.1);
    border: 2px solid rgba(255, 165, 0, 0.2);
}

.dedicated-view-all a:hover {
    background: rgba(255, 165, 0, 0.2);
    transform: translateX(4px);
    border-color: rgba(255, 165, 0, 0.4);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.2);
}

/* Features Grid */
.features-section {
    margin-bottom: 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 24px;
    width: 40px;
    text-align: center;
}

.feature-icon.check {
    color: #00ff88;
}

.feature-icon.question {
    color: #00d4ff;
}

.feature-icon.shield {
    color: #ffa500;
}

.feature-text {
    font-size: 16px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .dedicated-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .news-container {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .news-item {
        padding: 10px 12px;
    }
    
    .telegram-block, .chat-block {
        padding: 8px 10px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-left h1 {
        font-size: 36px;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .dedicated-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .dedicated-section h2 {
        font-size: 28px;
    }
    
    .dedicated-card {
        padding: 20px 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .promo-section .container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-left h1 {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
}