/* Import modern fonts */
/* latin - Weight 400 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/inter-400-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin - Weight 500 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/inter-500-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin - Weight 600 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/inter-600-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin - Weight 700 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/inter-700-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Global styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    background: #1a1a1a;
    padding-top: 
}

.pdl-btn {
    position: fixed;
    top: 50px;
    right: 20px;
    z-index: 1000; /* Ensure it stays above other elements */
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.pdl-btn:hover {
    transform: translateY(-2px);
}

/* Add media query for mobile responsiveness */
@media (max-width: 768px) {
    .pdl-btn {
        right: 10px;
        padding: 8px 16px;
    }
}

.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    border-bottom: 1px solid transparent;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.top-nav.scrolled {
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(30, 144, 255, 0.2);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1003;
    position: relative;
    transition: opacity 0.3s ease;
}

/* Hide burger menu when mobile menu is open */
.mobile-menu-open .burger-menu {
    opacity: 0;
    pointer-events: none;
}

.close-burger-menu {
    opacity: 0;
    pointer-events: none;
}

.burger-menu span {
    width: 2rem;
    height: 2px;
    background: #1E90FF;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    transform-origin: center;
}

/* Hamburger to X animation */
.mobile-menu-open .burger-menu span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.mobile-menu-open .burger-menu span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-open .burger-menu span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

.close-menu {
    display: none;
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: #1E90FF;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1003;
    transition: color 0.3s ease;
}

.close-menu:hover {
    color: #7EB2FF;
}

@media (max-width: 768px) {
    .close-menu {
        display: block;
    }
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-logo {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(45deg, #fff, #7EB2FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: opacity 0.3s ease;
    z-index: 11;
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-login-button,
.nav-logout-button {
    background: linear-gradient(
        45deg,
        #7EB2FF,
        #4169E1
    );
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    white-space: nowrap;
}

.nav-logout-button {
    background: linear-gradient(45deg, #ff4757, #ff6b81);
}

.nav-login-button:hover,
.nav-logout-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(126, 178, 255, 0.4);
}

.nav-login-button:hover {
    background: linear-gradient(
        45deg,
        #90c2ff,
        #5479f1
    );
}

.nav-logout-button:hover {
    box-shadow: 0 4px 12px rgba(255, 71, 87, 0.3);
}

.nav-link,
.nav-profile-link {
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(30, 144, 255, 0.1);
    border: 1px solid rgba(30, 144, 255, 0.2);
    white-space: nowrap;
}

.nav-link:hover,
.nav-profile-link:hover {
    background: rgba(30, 144, 255, 0.2);
    transform: translateY(-2px);
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-content {
        padding: 1rem;
    }

    .burger-menu {
        display: flex;
    }

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .nav-right {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        padding: 2rem;
        gap: 1.5rem;
        z-index: 1001;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }
}

@media (max-width: 768px) {
    .nav-right.mobile-menu-open {
        display: flex;
        opacity: 1;
        visibility: visible;
    }
}

.nav-right > div {
    width: 100%;
    max-width: 300px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 1rem; /* Add spacing between menu items */
}

    .nav-right.mobile-menu-open > div {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-right > div:nth-child(1) { transition-delay: 0.1s; }
    .nav-right > div:nth-child(2) { transition-delay: 0.2s; }
    .nav-right > div:nth-child(3) { transition-delay: 0.3s; }

    .nav-login-button,
    .nav-logout-button,
    .nav-profile-link,
    .nav-link {
        width: 100%;
        padding: 1rem;
        margin: 0.5rem 0; /* Add vertical spacing */
        text-align: center;
        font-size: 1.1rem;
        background: transparent;
        border: 1px solid rgba(30, 144, 255, 0.2);
        border-radius: 8px; /* Add border radius for better appearance */
    }

    .nav-link,
    .nav-profile-link {
        background: transparent;
    }

    .nav-link:hover,
    .nav-profile-link:hover {
        background: rgba(30, 144, 255, 0.1);
    }
}

.selector-btn {
    width: 100%;
    padding: 1rem;
    background: #1e2634;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
    text-align: center;
}

.selector-btn:hover {
    background: #2c3644;
}

.phone-display {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: #1e2634;
    border-radius: 8px;
    padding: 1rem;
}

.phone-number-item {
    padding: 0.75rem;
    border-radius: 6px;
    background: #2c3644;
    transition: background 0.2s ease;
    cursor: pointer;
}

.phone-number-item:hover {
    background: #374357;
}

.number-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.country {
    color: #8b96a7;
    font-size: 0.9rem;
}

.number {
    color: #fff;
    font-family: monospace;
    font-size: 1rem;
}

.selected-indicator {
    color: #1E90FF;
    font-size: 1.2rem;
    margin-left: 0.5rem;
}

.phone-number-item.selected {
    background: #374357;
    border: 1px solid rgba(30, 144, 255, 0.3);
}

.country {
    color: #8b96a7;
    font-size: 0.9rem;
}

.number {
    color: #fff;
    font-family: monospace;
    font-size: 1rem;
}

.broadcast-section {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.broadcast-section h2 {
    margin-bottom: 15px;
    color: #333;
}

.broadcast-textarea {
    width: 100%;
    min-height: 100px;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
}

.broadcast-button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.broadcast-button:hover {
    background-color: #45a049;
}

.broadcast-button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}




.get-started-btn {
    background: linear-gradient(
        45deg,
        #1E90FF,
        #4169E1
    );
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.get-started-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(30, 144, 255, 0.3);
}

.get-started-btn::after {
    content: '→';
    transition: transform 0.3s ease;
}

.get-started-btn:hover::after {
    transform: translateX(5px);
}

.disclaimer {
    font-size: 0.9rem;
    color: #666;
    margin-top: 1rem;
}

/* Add decorative elements */
.footer-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(30, 144, 255, 0.3),
        transparent
    );
}


.credits-section {
    background: rgba(30, 144, 255, 0.05);
    border: 1px solid rgba(30, 144, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}



.checkbox-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #fff;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(30, 144, 255, 0.3);
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.checkbox-label input[type="checkbox"]:checked {
    background: #1E90FF;
    border-color: #1E90FF;
}



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

    .credits-section h3 {
        font-size: 1.2rem;
    }
}


form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

input {
    background: rgba(0, 0, 0, 0.2); /* Darker input background */
    border: 1px solid rgba(30, 144, 255, 0.2);
    border-radius: 8px;
    padding: 1rem;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

input:focus {
    outline: none;
    border-color: rgba(30, 144, 255, 0.5);
    box-shadow: 0 0 0 2px rgba(30, 144, 255, 0.1);
    background: rgba(0, 0, 0, 0.3); /* Slightly darker on focus */
}

input::placeholder {
    color: rgba(255, 255, 255, 0.3); /* Dimmer placeholder text */
}

button[type="submit"] {
    background: linear-gradient(45deg, #1E90FF, #4169E1);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(30, 144, 255, 0.3);
}

.error-message {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.2);
    color: #ff6b6b !important; /* Brighter red for dark theme */
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.success-message {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.2);
    color: #69f0ae !important; /* Brighter green for dark theme */
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Loading state remains the same */
button[type="submit"].loading {
    position: relative;
    color: transparent;
}

button[type="submit"].loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: button-loading 0.8s linear infinite;
}

@keyframes button-loading {
    to {
        transform: rotate(360deg);
    }
}

.verification-container {
    min-height: 100vh;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.verification-panel {
    background: rgba(30, 30, 30, 0.7);
    border: 1px solid rgba(30, 144, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
    width: 100%;
    max-width: 600px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.verification-panel h1 {
    font-size: 2rem;
    background: linear-gradient(45deg, #fff, #7EB2FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.verification-panel p {
    color: #999;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.verification-status {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.verification-status span {
    color: #7EB2FF;
    font-size: 1.1rem;
}

.verification-icon {
    width: 24px;
    height: 24px;
    border: 2px solid #7EB2FF;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.verification-help {
    color: #666;
    font-size: 0.9rem;
    margin-top: 2rem;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
}

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

/* Modern Pricing Page Styles */


.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

.pricing-card {
    background: rgba(30, 30, 30, 0.7);
    border: 1px solid rgba(30, 144, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.pricing-card.main {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.7), rgba(30, 144, 255, 0.1));
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(30, 144, 255, 0.15);
    border-color: rgba(30, 144, 255, 0.4);
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(30, 144, 255, 0.1);
}

.card-header h3 {
    color: #7EB2FF;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price .amount {
    font-size: 2.5rem;
    color: #fff;
    font-weight: 600;
}

.price .period {
    color: #999;
    font-size: 1rem;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-card li {
    color: #fff;
    padding: 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-card li::before {
    content: "✓";
    color: #1E90FF;
    font-weight: bold;
}

.pricing-faq {
    margin-top: 6rem;
    padding-top: 6rem;
    border-top: 1px solid rgba(30, 144, 255, 0.1);
}

.pricing-faq h2 {

    text-align: center;
    font-size: 2.5rem;
    color: #7EB2FF;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: rgba(30, 30, 30, 0.7);
    border: 1px solid rgba(30, 144, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.faq-item h3 {
    color: #7EB2FF;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #999;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 968px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-header h1 {
        font-size: 2rem;
    }
    
    .pricing-container {
        padding: 4rem 1rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.company-name {
    color: #7EB2FF;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* Responsive design */
@media (max-width: 768px) {
    .pricing-details {
        grid-template-columns: 1fr;
    }
    .verification-panel {
        padding: 2rem;
    }

    .verification-panel h1 {
        font-size: 1.75rem;
    }

    .verification-panel p {
        font-size: 1rem;
    }
}


.users-table-container {
    overflow-x: auto;
    margin-top: 1rem;
}

.users-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.users-table th,
.users-table td {
    padding: 0.8rem;
    text-align: left;
    border-bottom: 1px solid rgba(30, 144, 255, 0.1);
}

.users-table th {
    background: rgba(30, 144, 255, 0.1);
    color: #7EB2FF;
    font-weight: 600;
}

.users-table td {
    color: #fff;
}

.users-table tbody tr:hover {
    background: rgba(30, 144, 255, 0.05);
}

.users-table tbody tr:hover {
    background: rgba(30, 144, 255, 0.05);
}

.preferred-number-section {
    margin: 10px 0;
}

.number-selector {
    margin: 10px 0;
}

.preferred-number-select {
    padding: 8px;
    border-radius: 4px;
    border: 1px solid #ccc;
    width: 200px;
    margin-top: 5px;
}

.preferred-number-select:focus {
    outline: none;
    border-color: #007bff;
}

.error-message {
    color: #ff4444;
    font-size: 1rem;
    display: block;
    text-align: center;
    padding: 1rem;
}

.info-section.error {
    border: 1px solid rgba(255, 68, 68, 0.2);
    background: rgba(255, 68, 68, 0.1);
}

.legal-content {
    min-height: 100vh;
    background: #1a1a1a;
    padding: 4rem 2rem;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.legal-content > div {
    background: rgba(30, 30, 30, 0.7);
    border: 1px solid rgba(30, 144, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.legal-content h1 {
    font-size: 2rem;
    background: linear-gradient(45deg, #fff, #7EB2FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 2.5rem;
}

.legal-content section {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    width: 100%;
    max-width: 600px;
    padding: 2rem;
    margin: 1.5rem auto;
}

.legal-content h2 {
    color: #7EB2FF;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.legal-content h3 {
    color: #7EB2FF;
    font-size: 1.1rem;
    margin: 1rem 0 0.5rem 0;
}

.legal-content p, .legal-content li {
    color: #999;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-content ul {
    list-style-type: none;
    padding-left: 1.5rem;
}

.legal-content li {
    position: relative;
    margin-bottom: 0.5rem;
}

.legal-content li:before {
    content: "•";
    color: #1E90FF;
    position: absolute;
    left: -1.5rem;
}

.legal-links {
    margin-top: 2rem;
    text-align: center;
}

.legal-links a {
    color: #1E90FF;
    text-decoration: none;
    transition: color 0.3s ease;
}


.warning-card {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.warning-card a {
    color: #1E90FF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.warning-card a:hover {
    color: #7EB2FF;
    text-decoration: underline;
}

.warning-icon {
    font-size: 1.5rem;
    margin-right: 0.5rem;
}

.phone-card {
    background: rgba(30, 144, 255, 0.05);
    border: 1px solid rgba(30, 144, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.phone-card h3 {
    color: #7EB2FF;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.phone-number {
    font-size: 2rem;
    color: white;
    margin: 1rem 0;
    font-family: monospace;
    letter-spacing: 2px;
}



.logout-button {
    background: linear-gradient(45deg, #1E90FF, #4169E1);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.logout-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(30, 144, 255, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dashboard-panel {
        padding: 2rem;
        margin: 1rem;
    }

    .phone-number {
        font-size: 1.5rem;
    }

    .dashboard-title {
        font-size: 1.75rem;
    }
}


.profile-container {
    min-height: 100vh;
    background: #1a1a1a;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 2rem;
}

.profile-panel {
    background: rgba(30, 30, 30, 0.7);
    border: 1px solid rgba(30, 144, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
    width: 100%;
    max-width: 700px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.profile-title {
    font-size: 2rem;
    background: linear-gradient(45deg, #fff, #7EB2FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

.forward-link {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.forward-link:hover {
    color: #7EB2FF;
}



.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.profile-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(30, 144, 255, 0.1);
    padding-bottom: 1rem;
}

.billing-section {
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(30, 144, 255, 0.1);
}

.billing-section h3 {
    color: #7EB2FF;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.iq-balance {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.iq-amount {
    font-size: 3rem;
    color: #fff;
    font-weight: 600;
}

.iq-time {
    color: #999;
    font-size: 1rem;
}

.usage-graph {
    margin-bottom: 2rem;
    padding: 1rem;
    margin-top: 3rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.usage-graph h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #333;
}


.billing-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(30, 144, 255, 0.1);
}

.billing-info p {
    color: #999;
    margin-bottom: 1rem;
}

.billing-info ul {
    list-style: none;
    padding: 0;
}

.billing-info li {
    color: #666;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.billing-info li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: #1E90FF;
}

.back-link {
    color: #1E90FF;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #7EB2FF;
}

.back-link::before {
    content: '←';
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.profile-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.field-label {
    color: #999;
    font-size: 0.9rem;
}

.field-value {
    color: #fff;
    font-size: 1.1rem;
}

/* Subscription info styling */
.subscription-info {
    background: rgba(30, 144, 255, 0.05);
    border: 1px solid rgba(30, 144, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.subscription-info h4 {
    color: #7EB2FF;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.subscription-info p {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(30, 144, 255, 0.05);
    padding: 0.75rem 0;
    margin: 0;
}

.subscription-info .label {
    color: #999;
    font-size: 0.9rem;
}

.subscription-info .value {
    color: #fff;
    font-weight: 500;
}

.subscription-info .status-active {
    color: #4CAF50;
}

.subscription-info .status-trialing {
    color: #FFC107;
}

.subscription-info .status-canceled, 
.subscription-info .status-inactive {
    color: #FF5252;
}

.subscription-actions {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.paddle-dashboard-button {
    background: linear-gradient(45deg, #1E90FF, #4169E1);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
}

.paddle-dashboard-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.3);
}

/* Message styling */
.message {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    width: 100%;
    text-align: center;
}

.error-message {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.2);
    color: #ff6b6b !important;
}

.success-message {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.2);
    color: #69f0ae !important;
}

/* Loading state */
.loading-profile {
    color: #999;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.loading-profile::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 2px solid rgba(30, 144, 255, 0.3);
    border-top-color: #1E90FF;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Responsive design */
@media (max-width: 768px) {
    .profile-panel {
        padding: 2rem;
    }

    .profile-title {
        font-size: 1.75rem;
    }
}



/* Responsive Design */
@media (max-width: 968px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {

    input,
    button[type="submit"] {
        padding: 0.875rem;
    }

    .features-grid,
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .features h2,
    .how-it-works h2 {
        font-size: 2rem;
    }

    .footer-cta {
        padding: 4rem 0;
    }

    .footer-cta h2 {
        font-size: 2.5rem;
    }

    .footer-cta .subtitle {
        font-size: 1.1rem;
    }
}

