/* Main Container */
.vglinks-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 25px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    box-sizing: border-box;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Header */
.vglinks-header {
    text-align: center;
    margin-bottom: 40px;
}

.vglinks-header h2 {
    margin: 0 0 15px 0;
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
}

.vglinks-subtitle {
    margin: 0;
    font-size: 18px;
    color: #666;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons Grid */
.vglinks-buttons-grid {
    display: grid;
    gap: 25px;
    margin-bottom: 40px;
}

/* Column Classes */
.vglinks-grid-1 { grid-template-columns: repeat(1, 1fr); }
.vglinks-grid-2 { grid-template-columns: repeat(2, 1fr); }
.vglinks-grid-3 { grid-template-columns: repeat(3, 1fr); }
.vglinks-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Button Styles */
.vglinks-button {
    display: flex;
    align-items: center;
    padding: 25px;
    border-radius: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.vglinks-button:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
    text-decoration: none;
}

.vglinks-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.vglinks-button:hover:before {
    left: 100%;
}

/* Button Colors */
.vglinks-button-blue {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    border-color: #2980b9;
}

.vglinks-button-green {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
    border-color: #27ae60;
}

.vglinks-button-orange {
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: white;
    border-color: #d35400;
}

.vglinks-button-purple {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    color: white;
    border-color: #8e44ad;
}

.vglinks-button-red {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border-color: #c0392b;
}

.vglinks-button-teal {
    background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
    color: white;
    border-color: #16a085;
}

.vglinks-button-indigo {
    background: linear-gradient(135deg, #3f51b5 0%, #303f9f 100%);
    color: white;
    border-color: #303f9f;
}

.vglinks-button-pink {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    color: white;
    border-color: #c2185b;
}

.vglinks-button-gray {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
    color: white;
    border-color: #7f8c8d;
}

/* Button Content */
.vglinks-button-icon {
    font-size: 40px;
    margin-right: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.vglinks-button:hover .vglinks-button-icon {
    transform: scale(1.2) rotate(10deg);
}

.vglinks-button-content {
    flex: 1;
}

.vglinks-button-title {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.vglinks-button-subtitle {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.4;
}

.vglinks-button-arrow {
    margin-left: 15px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.vglinks-button:hover .vglinks-button-arrow {
    opacity: 1;
    transform: translateX(5px);
}

/* Instructions */
.vglinks-instructions {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    border-left: 5px solid #3498db;
}

.vglinks-instructions h3 {
    margin: 0 0 20px 0;
    color: #2c3e50;
    font-size: 24px;
    font-weight: 700;
}

.vglinks-instructions p {
    margin: 0 0 25px 0;
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}

.vglinks-tips {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #2ecc71;
}

.vglinks-tips h4 {
    margin: 0 0 15px 0;
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
}

.vglinks-tips ul {
    margin: 0;
    padding-left: 20px;
    color: #666;
}

.vglinks-tips li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.vglinks-tips li:last-child {
    margin-bottom: 0;
}

/* Simple Buttons */
.vglinks-simple-buttons {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin: 30px auto;
    max-width: 800px;
}

.vglinks-simple-header {
    text-align: center;
    margin-bottom: 30px;
}

.vglinks-simple-header h3 {
    margin: 0 0 10px 0;
    color: #2c3e50;
    font-size: 26px;
    font-weight: 700;
}

.vglinks-simple-header p {
    margin: 0;
    color: #666;
    font-size: 16px;
}

.vglinks-simple-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

/* Simple Button Styles */
.vglinks-simple-btn {
    display: inline-block;
    padding: 15px 25px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.vglinks-simple-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    text-decoration: none;
}

/* Size Classes */
.vglinks-size-small { font-size: 14px; padding: 10px 20px; }
.vglinks-size-medium { font-size: 16px; padding: 15px 25px; }
.vglinks-size-large { font-size: 18px; padding: 20px 30px; }

/* Color Classes for Simple Buttons */
.vglinks-simple-primary {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    border-color: #2980b9;
}

.vglinks-simple-success {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
    border-color: #27ae60;
}

.vglinks-simple-warning {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
    border-color: #e67e22;
}

.vglinks-simple-danger {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border-color: #c0392b;
}

.vglinks-simple-info {
    background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
    color: white;
    border-color: #16a085;
}

/* Links List */
.vglinks-list-container {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    margin: 30px auto;
    max-width: 1000px;
}

.vglinks-list-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.vglinks-list-header h2 {
    margin: 0;
    color: #2c3e50;
    font-size: 28px;
    font-weight: 700;
}

.vglinks-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vglinks-list-item {
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    background: #f8f9fa;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.vglinks-list-item:hover {
    background: white;
    border-color: #3498db;
    transform: translateX(10px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.vglinks-list-icon {
    font-size: 30px;
    margin-right: 20px;
    flex-shrink: 0;
}

.vglinks-list-content {
    flex: 1;
}

.vglinks-list-title {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 700;
}

.vglinks-list-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.vglinks-list-title a:hover {
    color: #3498db;
    text-decoration: underline;
}

.vglinks-list-description {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.vglinks-list-arrow {
    margin-left: 20px;
}

.vglinks-list-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #3498db;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.vglinks-list-link:hover {
    background: #2980b9;
    transform: scale(1.1);
}

.vglinks-list-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #e9ecef;
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .vglinks-grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .vglinks-container {
        padding: 20px;
    }
    
    .vglinks-header h2 {
        font-size: 28px;
    }
    
    .vglinks-subtitle {
        font-size: 16px;
    }
    
    .vglinks-grid-3,
    .vglinks-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .vglinks-button {
        padding: 20px;
    }
    
    .vglinks-button-title {
        font-size: 18px;
    }
    
    .vglinks-button-icon {
        font-size: 35px;
    }
}

@media (max-width: 768px) {
    .vglinks-container {
        padding: 15px;
    }
    
    .vglinks-header h2 {
        font-size: 24px;
    }
    
    .vglinks-grid-2,
    .vglinks-grid-3,
    .vglinks-grid-4 {
        grid-template-columns: 1fr;
    }
    
    .vglinks-button {
        padding: 15px;
    }
    
    .vglinks-button-icon {
        font-size: 30px;
        margin-right: 15px;
    }
    
    .vglinks-button-title {
        font-size: 16px;
    }
    
    .vglinks-button-subtitle {
        font-size: 13px;
    }
    
    .vglinks-simple-grid {
        grid-template-columns: 1fr;
    }
    
    .vglinks-list-item {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .vglinks-list-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .vglinks-list-arrow {
        margin-left: 0;
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .vglinks-header h2 {
        font-size: 22px;
    }
    
    .vglinks-subtitle {
        font-size: 14px;
    }
    
    .vglinks-instructions h3 {
        font-size: 20px;
    }
    
    .vglinks-simple-header h3 {
        font-size: 22px;
    }
    
    .vglinks-list-header h2 {
        font-size: 24px;
    }
}